We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0271494 commit 981310cCopy full SHA for 981310c
1 file changed
ui/src/views/AutogenView.vue
@@ -989,6 +989,12 @@ export default {
989
}
990
this.itemCount = apiItemCount
991
992
+ if (this.dataView && this.$route.path.includes('/zone/') && 'listVmwareDcs' in this.$store.getters.apis) {
993
+ api('listVmwareDcs', { zoneid: this.items[0].id }).then(response => {
994
+ this.items[0].vmwaredc = response.listvmwaredcsresponse.VMwareDC
995
+ })
996
+ }
997
+
998
if (['listTemplates', 'listIsos'].includes(this.apiName) && this.items.length > 1) {
999
this.items = [...new Map(this.items.map(x => [x.id, x])).values()]
1000
0 commit comments