mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 01:25:37 -05:00
Call ModelView base init after view init (#13261)
* Call ModelView base init after view init * baseInit to end
This commit is contained in:
@@ -62,12 +62,12 @@ export default class WebViewComponent extends ComponentBase<WebViewProperties> i
|
||||
super(changeRef, el);
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.baseInit();
|
||||
ngAfterViewInit(): void {
|
||||
this._createWebview();
|
||||
this._register(addDisposableListener(window, EventType.RESIZE, e => {
|
||||
this.layout();
|
||||
}));
|
||||
this.baseInit();
|
||||
}
|
||||
|
||||
private _createWebview(): void {
|
||||
|
||||
Reference in New Issue
Block a user