We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 647b573 commit ec1561fCopy full SHA for ec1561f
1 file changed
packages/debug/src/browser/view/configuration/debug-toolbar.view.tsx
@@ -128,7 +128,7 @@ export const DebugToolbarView = (props: DebugToolbarViewProps) => {
128
return (
129
<DebugAction
130
run={doStop}
131
- enabled={autorunState !== DebugState.Inactive}
+ enabled={state !== DebugState.Inactive}
132
icon={'disconnect'}
133
label={localize('debug.action.disattach')}
134
/>
@@ -137,7 +137,7 @@ export const DebugToolbarView = (props: DebugToolbarViewProps) => {
137
138
139
140
141
icon={'stop'}
142
label={localize('debug.action.stop')}
143
0 commit comments