We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c039ac commit 1201e8cCopy full SHA for 1201e8c
1 file changed
ui/src/views/dashboard/UsageDashboard.vue
@@ -463,9 +463,13 @@ export default {
463
},
464
listProject () {
465
this.loading = true
466
- api('listProjects', { id: store.getters.project.id }).then(json => {
+ const params = {
467
+ id: store.getters.project.id,
468
+ listall: true
469
+ }
470
+ api('listProjects', params).then(json => {
471
this.loading = false
- if (json && json.listprojectsresponse && json.listprojectsresponse.project) {
472
+ if (json?.listprojectsresponse?.project) {
473
this.project = json.listprojectsresponse.project[0]
474
}
475
})
0 commit comments