mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-06 02:30:46 -08:00
:reverse was ignored when prefix sorting by version (#9280)
This commit is contained in:
parent
b061f90f87
commit
b5153c0066
2 changed files with 3 additions and 1 deletions
|
|
@ -1049,7 +1049,7 @@ exports.makeCompareFunction = function(type,options) {
|
|||
return compare(dateA,dateB);
|
||||
},
|
||||
"version": function(a,b) {
|
||||
return $tw.utils.compareVersions(a,b);
|
||||
return compare($tw.utils.compareVersions(a,b),0);
|
||||
},
|
||||
"alphanumeric": function(a,b) {
|
||||
if(!isCaseSensitive) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue