mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
give back the getter for container property (#12110)
* give back the getter for container property * parameter type
This commit is contained in:
@@ -122,12 +122,12 @@ export class DashboardInput extends EditorInput {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
set container(container: HTMLElement) {
|
set container(container: HTMLElement | undefined) {
|
||||||
this._disposeContainer();
|
this._disposeContainer();
|
||||||
this._parentContainer = container;
|
this._parentContainer = container;
|
||||||
}
|
}
|
||||||
|
|
||||||
getContainer(): HTMLElement | undefined {
|
get container(): HTMLElement | undefined {
|
||||||
return this._parentContainer;
|
return this._parentContainer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user