Fix sort issue in the drive

This commit is contained in:
yflory 2020-04-23 11:32:57 +02:00
parent 1f42eb4184
commit 2a7dbc1294

View file

@ -2842,7 +2842,7 @@ define([
var _a = props[a];
var _b = props[b];
if (_a < _b) { return mult * -1; }
if (_b > _a) { return mult; }
if (_b < _a) { return mult; }
return 0;
});
return keys;