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 9eb32f4 commit 85d959bCopy full SHA for 85d959b
supervisor/shared/web_workflow/static/directory.js
@@ -15,16 +15,9 @@ const sortEvent = new Event('sort');
15
class SortableTable {
16
constructor(tableNode) {
17
this.tableNode = tableNode;
18
-
19
- this.columnHeaders = tableNode.querySelectorAll('thead th');
20
}
21
22
setColumnHeaderSort(columnIndex) {
23
- var ch = this.columnHeaders[columnIndex];
24
- this.sortColumn(columnIndex);
25
- }
26
27
- sortColumn(columnIndex) {
28
function compareValues(a, b) {
29
if (a.value === b.value) {
30
return 0;
0 commit comments