Duplicate Result sets (#3620)

* remove debouncing and echoing to fix rendering bug

* fix access of internal member

* fix issue with using splice rather than slice

* fix compile issues
This commit is contained in:
Anthony Dresser
2019-01-10 13:44:14 -08:00
committed by GitHub
parent a0d84f383c
commit 18f7662209
3 changed files with 33 additions and 50 deletions

View File

@@ -144,6 +144,7 @@ export class MessagePanel extends ViewletPanel {
this.reset();
this.queryRunnerDisposables.push(runner.onQueryStart(() => this.reset()));
this.queryRunnerDisposables.push(runner.onMessage(e => this.onMessage(e)));
this.onMessage(runner.messages);
}
private onMessage(message: IResultMessage | IResultMessage[]) {