mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-25 09:35:37 -05:00
Hook up deletion for MIAA (#10991)
* Hook up deletion for MIAA * fix button disabling * cannot
This commit is contained in:
@@ -97,8 +97,8 @@ export class ControllerModel {
|
||||
});
|
||||
}
|
||||
|
||||
public miaaDelete(name: string): void {
|
||||
this._sqlInstanceRouter.apiV1HybridSqlNsNameDelete(this._namespace, name);
|
||||
public async miaaDelete(namespace: string, name: string): Promise<void> {
|
||||
await this._sqlInstanceRouter.apiV1HybridSqlNsNameDelete(namespace, name);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user