mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -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:
@@ -33,15 +33,12 @@ export default class SeparatorComponent extends ComponentBase<azdata.SeparatorCo
|
||||
super(changeRef, el);
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.baseInit();
|
||||
}
|
||||
|
||||
ngAfterViewInit(): void {
|
||||
if (this._separatorContainer) {
|
||||
this._separator = new Separator(this._separatorContainer.nativeElement);
|
||||
this._register(this._separator);
|
||||
}
|
||||
this.baseInit();
|
||||
}
|
||||
|
||||
setLayout(layout: any): void {
|
||||
|
||||
Reference in New Issue
Block a user