mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fixed arrows disappearing after tab change (#3829)
This commit is contained in:
@@ -45,14 +45,14 @@ export class QueryPlanView implements IPanelView {
|
|||||||
private _state: QueryPlanState;
|
private _state: QueryPlanState;
|
||||||
|
|
||||||
public render(container: HTMLElement): void {
|
public render(container: HTMLElement): void {
|
||||||
|
container.appendChild(this.container);
|
||||||
|
this.container.style.overflow = 'scroll';
|
||||||
if (!this.qp) {
|
if (!this.qp) {
|
||||||
this.qp = new QueryPlan(this.container);
|
this.qp = new QueryPlan(this.container);
|
||||||
if (this.xml) {
|
if (this.xml) {
|
||||||
this.qp.xml = this.xml;
|
this.qp.xml = this.xml;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
container.appendChild(this.container);
|
|
||||||
this.container.style.overflow = 'scroll';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
|
|||||||
Reference in New Issue
Block a user