Skip to content

Commit

Permalink
fix: 进程守护区分项目名称和进程名称 (#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssongliu authored Aug 14, 2023
1 parent 35b8532 commit a0456d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/host/tool/supervisor/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit a0456d0

Please sign in to comment.