diff --git a/frontend/src/views/host/tool/supervisor/index.vue b/frontend/src/views/host/tool/supervisor/index.vue index 30f3540c3..afd7be634 100644 --- a/frontend/src/views/host/tool/supervisor/index.vue +++ b/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); } }