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

This commit is contained in:
ssongliu 2023-08-14 21:38:12 +08:00 committed by GitHub
parent 35b8532eaa
commit a0456d0f7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}