File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
supervisor/shared/web_workflow/static Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,8 @@ async function refresh_list() {
71
71
// Remove the delete button
72
72
td [ 4 ] . replaceChildren ( ) ;
73
73
74
- var dataCell = td [ sort_column ] ;
75
-
76
74
var sortdata = { } ;
77
- sortdata . value = dataCell . textContent . toLowerCase ( ) . trim ( ) ;
75
+ sortdata . value = ".." ;
78
76
sortdata . index = index ;
79
77
dirCells . push ( sortdata ) ;
80
78
index += 1 ;
@@ -86,8 +84,6 @@ async function refresh_list() {
86
84
// Clone the new row and insert it into the table
87
85
var clone = template . content . cloneNode ( true ) ;
88
86
var td = clone . querySelectorAll ( "td" ) ;
89
- var dataCell = td [ sort_column ] ;
90
-
91
87
var icon = "⬇" ;
92
88
var file_path = current_path + f . name ;
93
89
let api_url = new URL ( "/fs" + file_path , url_base ) ;
You can’t perform that action at this time.
0 commit comments