mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 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:
@@ -20,7 +20,7 @@ class TestComponent extends ComponentBase<azdata.ComponentProperties> {
|
||||
this.baseInit();
|
||||
}
|
||||
|
||||
ngOnInit() { }
|
||||
ngAfterViewInit() { }
|
||||
setLayout() { }
|
||||
|
||||
public addValidation(validation: () => boolean | Thenable<boolean>) {
|
||||
@@ -44,7 +44,7 @@ class TestContainer extends ContainerBase<TestComponent> {
|
||||
return this.items;
|
||||
}
|
||||
|
||||
ngOnInit() { }
|
||||
ngAfterViewInit() { }
|
||||
setLayout() { }
|
||||
|
||||
public addValidation(validation: () => boolean | Thenable<boolean>) {
|
||||
|
||||
Reference in New Issue
Block a user