Commit bc2cbca8 authored by rockyl's avatar rockyl

修改了好多东西啊

parent 2eb0fe6d
...@@ -71,7 +71,7 @@ class ProcessManager { ...@@ -71,7 +71,7 @@ class ProcessManager {
ids: [], ids: [],
}; };
} }
this.pool[hash].ids.push(name || id); this.pool[hash].ids.push(`${name} - ${id}`);
return hash; return hash;
} }
} }
......
This diff is collapsed.
...@@ -77,7 +77,7 @@ class ProcessManager { ...@@ -77,7 +77,7 @@ class ProcessManager {
ids: [], ids: [],
}; };
} }
this.pool[hash].ids.push(name || id); this.pool[hash].ids.push(`${name} - ${id}`);
return hash; return hash;
} }
} }
......
This diff is collapsed.
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
ids: [], ids: [],
}; };
} }
this.pool[hash].ids.push(name || id); this.pool[hash].ids.push(`${name} - ${id}`);
return hash; return hash;
} }
} }
......
This diff is collapsed.
...@@ -38,7 +38,7 @@ export default class ProcessManager { ...@@ -38,7 +38,7 @@ export default class ProcessManager {
ids: [], ids: [],
}; };
} }
this.pool[hash].ids.push(name || id); this.pool[hash].ids.push(`${id} - ${name}`);
return hash; 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