Skip to content

Commit

Permalink
fixes #104570
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Aug 13, 2020
1 parent b557a37 commit da1b424
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/vs/workbench/contrib/debug/browser/callStackView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -553,12 +553,7 @@ class SessionsRenderer implements ICompressibleTreeRenderer<IDebugSession, Fuzzy
data.session.title = thread.stoppedDetails.text;
}
} else {
const hasChildSessions = this.debugService.getModel().getSessions().find(s => s.parentSession === session);
if (!hasChildSessions) {
data.stateLabel.textContent = nls.localize({ key: 'running', comment: ['indicates state'] }, "Running");
} else {
data.stateLabel.style.display = 'none';
}
data.stateLabel.textContent = nls.localize({ key: 'running', comment: ['indicates state'] }, "Running");
}
}

Expand Down

0 comments on commit da1b424

Please sign in to comment.