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 dfcaefa commit a667642Copy full SHA for a667642
src/vs/workbench/contrib/debug/browser/repl.ts
@@ -753,7 +753,7 @@ export class Repl extends FilterViewPane implements IHistoryNavigationWidget {
753
}
754
755
override dispose(): void {
756
- this.replInput.dispose();
+ this.replInput?.dispose(); // Disposed before rendered? #174558
757
this.replElementsChangeListener?.dispose();
758
this.refreshScheduler.dispose();
759
this.modelChangeListener.dispose();
0 commit comments