Skip to content

Commit 433956c

Browse files
committed
Merge remote-tracking branch 'origin/4.19'
2 parents d5241d3 + aad410a commit 433956c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
<cs.joda-time.version>2.12.5</cs.joda-time.version>
162162
<cs.jpa.version>2.2.1</cs.jpa.version>
163163
<cs.jsch.version>0.1.55</cs.jsch.version>
164-
<cs.json.version>20090211</cs.json.version>
164+
<cs.json.version>20231013</cs.json.version>
165165
<cs.jstl.version>1.2</cs.jstl.version>
166166
<cs.kafka-clients.version>2.7.0</cs.kafka-clients.version>
167167
<cs.libvirt-java.version>0.5.3</cs.libvirt-java.version>

ui/src/config/section/infra/systemVms.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export default {
2424
icon: 'thunderbolt-outlined',
2525
docHelp: 'adminguide/systemvm.html',
2626
permission: ['listSystemVms'],
27-
columns: ['name', 'state', 'agentstate', 'systemvmtype', 'publicip', 'privateip', 'linklocalip', 'hostname', 'zonename'],
28-
details: ['name', 'id', 'agentstate', 'systemvmtype', 'publicip', 'privateip', 'linklocalip', 'gateway', 'hostname', 'zonename', 'created', 'activeviewersessions', 'isdynamicallyscalable', 'hostcontrolstate'],
27+
columns: ['name', 'state', 'agentstate', 'systemvmtype', 'publicip', 'privateip', 'linklocalip', 'version', 'hostname', 'zonename'],
28+
details: ['name', 'id', 'agentstate', 'systemvmtype', 'publicip', 'privateip', 'linklocalip', 'gateway', 'hostname', 'version', 'zonename', 'created', 'activeviewersessions', 'isdynamicallyscalable', 'hostcontrolstate'],
2929
resourceType: 'SystemVm',
3030
filters: () => {
3131
const filters = ['starting', 'running', 'stopping', 'stopped', 'destroyed', 'expunging', 'migrating', 'error', 'unknown', 'shutdown']

ui/src/views/AutogenView.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -989,6 +989,12 @@ export default {
989989
}
990990
this.itemCount = apiItemCount
991991
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+
992998
if (['listTemplates', 'listIsos'].includes(this.apiName) && this.items.length > 1) {
993999
this.items = [...new Map(this.items.map(x => [x.id, x])).values()]
9941000
}

0 commit comments

Comments
 (0)