mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-14 11:05:41 +05:00
Fix sort issue in the drive
This commit is contained in:
parent
1f42eb4184
commit
2a7dbc1294
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user