We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a5149 commit 0b286b7Copy full SHA for 0b286b7
supervisor/shared/web_workflow/static/directory.js
@@ -11,8 +11,7 @@ async function refresh_list() {
11
if (a.directory == b.directory && a.name.toLowerCase() === b.name.toLowerCase()) {
12
return 0;
13
} else {
14
- return a.directory.toString().substring(3,4)+a.name.toLowerCase() <
15
- b.directory.toString().substring(3,4)+b.name.toLowerCase() ? -1 : 1;
+ return a.directory.toString().substring(3,4)+a.name.toLowerCase() < b.directory.toString().substring(3,4)+b.name.toLowerCase() ? -1 : 1;
16
}
17
18
0 commit comments