Commit bc2cbca8 authored by rockyl's avatar rockyl

修改了好多东西啊

parent 2eb0fe6d
......@@ -71,7 +71,7 @@ class ProcessManager {
ids: [],
};
}
this.pool[hash].ids.push(name || id);
this.pool[hash].ids.push(`${name} - ${id}`);
return hash;
}
}
......
This diff is collapsed.
......@@ -77,7 +77,7 @@ class ProcessManager {
ids: [],
};
}
this.pool[hash].ids.push(name || id);
this.pool[hash].ids.push(`${name} - ${id}`);
return hash;
}
}
......
This diff is collapsed.
......@@ -77,7 +77,7 @@
ids: [],
};
}
this.pool[hash].ids.push(name || id);
this.pool[hash].ids.push(`${name} - ${id}`);
return hash;
}
}
......
This diff is collapsed.
......@@ -38,7 +38,7 @@ export default class ProcessManager {
ids: [],
};
}
this.pool[hash].ids.push(name || id);
this.pool[hash].ids.push(`${id} - ${name}`);
return hash;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment