mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
change to allow refresh and delete correctly (#12477)
This commit is contained in:
@@ -186,13 +186,13 @@ export class CurrentModelsTable extends ModelViewBase implements IDataComponent<
|
|||||||
|
|
||||||
public async onLoading(): Promise<void> {
|
public async onLoading(): Promise<void> {
|
||||||
if (this._loader) {
|
if (this._loader) {
|
||||||
await this._loader.updateProperties({ loading: true });
|
this._loader.loading = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async onLoaded(): Promise<void> {
|
public async onLoaded(): Promise<void> {
|
||||||
if (this._loader) {
|
if (this._loader) {
|
||||||
await this._loader.updateProperties({ loading: false });
|
this._loader.loading = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user