1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Don't sort shadow tiddlers

Instead rely on the existing ordering
This commit is contained in:
jeremy@jermolene.com 2022-01-08 16:20:22 +00:00
parent 762de81444
commit b6831ed35d

View File

@ -1111,7 +1111,7 @@ $tw.Wiki = function(options) {
shadowTiddlerTitles = null,
getShadowTiddlerTitles = function() {
if(!shadowTiddlerTitles) {
shadowTiddlerTitles = Object.keys(shadowTiddlers).sort();
shadowTiddlerTitles = Object.keys(shadowTiddlers);
}
return shadowTiddlerTitles;
},