We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5637011 commit e397e02Copy full SHA for e397e02
src/vs/workbench/parts/tasks/electron-browser/terminalTaskSystem.ts
@@ -876,7 +876,7 @@ export class TerminalTaskSystem implements ITaskSystem {
876
// Search for any idle terminal used previously by a task of the same terminalGroup
877
// (or, if the task has no terminalGroup, a terminal used by a task without terminalGroup).
878
for (const taskId of this.idleTaskTerminals.keys()) {
879
- const idleTerminalId = this.idleTaskTerminals[taskId];
+ const idleTerminalId = this.idleTaskTerminals.get(taskId)!;
880
if (this.terminals[idleTerminalId].terminalGroup === terminalGroup) {
881
terminalId = this.idleTaskTerminals.remove(taskId);
882
break;
0 commit comments