Skip to content

Commit 2113d08

Browse files
committed
Fix data not being loaded in MRVA results panel
When the MRVA results panel is closed (so the panel gets disposed) and opened again, it would not load the MRVA data (such as whether a query has already been downloaded). This fixes it by also resetting the internal state of whether the panel is loaded when the panel is disposed.
1 parent 5b5ef26 commit 2113d08

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

extensions/ql-vscode/src/remote-queries/remote-queries-interface.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export class RemoteQueriesInterfaceManager {
125125
() => {
126126
this.panel = undefined;
127127
this.currentQueryId = undefined;
128+
this.panelLoaded = false;
128129
},
129130
null,
130131
ctx.subscriptions

0 commit comments

Comments
 (0)