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 ee94ae5 commit d5ba393Copy full SHA for d5ba393
ui/src/views/dashboard/UsageDashboard.vue
@@ -460,9 +460,13 @@ export default {
460
},
461
listProject () {
462
this.loading = true
463
- api('listProjects', { id: store.getters.project.id }).then(json => {
+ const params = {
464
+ id: store.getters.project.id,
465
+ listall: true
466
+ }
467
+ api('listProjects', params).then(json => {
468
this.loading = false
- if (json && json.listprojectsresponse && json.listprojectsresponse.project) {
469
+ if (json?.listprojectsresponse?.project) {
470
this.project = json.listprojectsresponse.project[0]
471
}
472
})
0 commit comments