mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
modelview dashboard (#9784)
* modelview dashboard * styles * toolbar support * spaces * add tab icon support
This commit is contained in:
@@ -332,6 +332,7 @@ export abstract class ContainerBase<T> extends ComponentBase {
|
||||
}
|
||||
}));
|
||||
this._changeRef.detectChanges();
|
||||
this.onItemsUpdated();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -343,6 +344,7 @@ export abstract class ContainerBase<T> extends ComponentBase {
|
||||
if (index >= 0) {
|
||||
this.items.splice(index, 1);
|
||||
this._changeRef.detectChanges();
|
||||
this.onItemsUpdated();
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
@@ -373,4 +375,7 @@ export abstract class ContainerBase<T> extends ComponentBase {
|
||||
}
|
||||
|
||||
abstract setLayout(layout: any): void;
|
||||
|
||||
protected onItemsUpdated(): void {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user