Browse Source

fix: 进程守护区分项目名称和进程名称 (#1952)

pull/1962/head v1.5.1
ssongliu 1 year ago committed by GitHub
parent
commit
a0456d0f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      frontend/src/views/host/tool/supervisor/index.vue

2
frontend/src/views/host/tool/supervisor/index.vue

@ -229,7 +229,7 @@ const loadStatus = async () => {
for (const process of data.value) {
process.status = [];
for (const item of stats) {
if (process.name === item.name) {
if (process.name === item.name.split(':')[0]) {
process.status.push(item);
}
}

Loading…
Cancel
Save