When caching sort values, make the type of the value part of the cache key (so that 9 and '9' don't collide)
This commit is contained in:
parent
2223fcfd2b
commit
23bd717a8a
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ Ox.range = function() {
|
|||
}
|
||||
return sortValue;
|
||||
}, {key: function(args) {
|
||||
return args[0];
|
||||
return Ox.typeOf(args[0]) + ' ' + args[0];
|
||||
}});
|
||||
|
||||
/*@
|
||||
|
|
Loading…
Reference in a new issue