We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cbf104 commit b8cca29Copy full SHA for b8cca29
extensions/ql-vscode/src/query-history.ts
@@ -560,14 +560,16 @@ export class QueryHistoryManager extends DisposableObject {
560
}
561
562
private registerToRemoteQueriesEvents() {
563
- const queryAddedSubscription = this.remoteQueriesManager.onRemoteQueryAdded(event => {
+ const queryAddedSubscription = this.remoteQueriesManager.onRemoteQueryAdded(async (event) => {
564
this.addQuery({
565
t: 'remote',
566
status: QueryStatus.InProgress,
567
completed: false,
568
queryId: event.queryId,
569
remoteQuery: event.query,
570
});
571
+
572
+ await this.refreshTreeView();
573
574
575
const queryRemovedSubscription = this.remoteQueriesManager.onRemoteQueryRemoved(async (event) => {
0 commit comments