fixed arrows disappearing after tab change (#3829)

This commit is contained in:
Aditya Bist
2019-01-25 13:29:39 -08:00
committed by GitHub
parent 7804f94d8b
commit c8986464ec

View File

@@ -45,14 +45,14 @@ export class QueryPlanView implements IPanelView {
private _state: QueryPlanState;
public render(container: HTMLElement): void {
container.appendChild(this.container);
this.container.style.overflow = 'scroll';
if (!this.qp) {
this.qp = new QueryPlan(this.container);
if (this.xml) {
this.qp.xml = this.xml;
}
}
container.appendChild(this.container);
this.container.style.overflow = 'scroll';
}
dispose() {