IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Order fix in WBProcessDashboard.

pull/1/head
parent
commit
9865a725c0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      frontend/src/js/component/wb-process-dashboard.js

+ 2
- 2
frontend/src/js/component/wb-process-dashboard.js View File

@@ -61,14 +61,14 @@ class WBProcessDashboard extends Component {
makeArvadosRequest(arvHost, arvToken,
'/arvados/v1/container_requests?filters=' +
encodeURIComponent(JSON.stringify(filters)) +
'&order=' + encodeURIComponent(['uuid asc']) +
'&order=' + encodeURIComponent(JSON.stringify(['uuid asc'])) +
'&offset=' + ofs));
});
} else {
prom = prom.then(() => {
return getAll(ofs => makeArvadosRequest(arvHost, arvToken,
'/arvados/v1/container_requests?order=' +
encodeURIComponent(['uuid asc']) + '&offset=' + ofs));
encodeURIComponent(JSON.stringify(['uuid asc'])) + '&offset=' + ofs));
});
}
let crlist;


Loading…
Cancel
Save