Skip to content

Commit cba6d39

Browse files
committed
Don't sortObject the properties for the wikidata items
(closes #10259)
1 parent b9b6a8b commit cba6d39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/wikidata.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,8 @@ async function finish() {
667667
});
668668
}
669669

670-
_wikidata[qid] = sortObject(target);
670+
// Don't `sortObject` the properties at this level, see #10259
671+
// _wikidata[qid] = sortObject(target);
671672
});
672673

673674
_warnings.sort(sortWarnings);

0 commit comments

Comments
 (0)