mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Fix problem with sorting date fields
Introduced a couple of commits ago when the localeCompare() stuff was added.
This commit is contained in:
parent
4758874d13
commit
89165fc51d
@ -309,6 +309,8 @@ exports.sortTiddlers = function(titles,sortField,isDescending,isCaseSensitive,is
|
|||||||
a = Number(a);
|
a = Number(a);
|
||||||
b = Number(b);
|
b = Number(b);
|
||||||
return isDescending ? b - a : a - b;
|
return isDescending ? b - a : a - b;
|
||||||
|
} else if($tw.utils.isDate(a) && $tw.utils.isDate(b)) {
|
||||||
|
return isDescending ? b - a : a - b;
|
||||||
} else {
|
} else {
|
||||||
a = String(a);
|
a = String(a);
|
||||||
b = String(b);
|
b = String(b);
|
||||||
|
Loading…
Reference in New Issue
Block a user