Browse Source

[fixbug][ui]Repair the master and worker management instrument display

pull/3/MERGE
break60 4 years ago
parent
commit
70faea27c3
  1. 1
      dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue
  2. 1
      dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue

1
dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue

@ -95,6 +95,7 @@
this.getMasterData().then(res => {
this.masterList = _.map(res, (v, i) => {
return _.assign(v, {
id: v.host + "_" + v.id,
resInfo: JSON.parse(v.resInfo)
})
})

1
dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue

@ -115,6 +115,7 @@
this.getWorkerData().then(res => {
this.workerList = _.map(res, (v, i) => {
return _.assign(v, {
id: v.host + "_" + v.id,
resInfo: JSON.parse(v.resInfo)
})
})

Loading…
Cancel
Save