mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 09:35:39 -05:00
Fixed a bug with validing empty table name (#13259)
This commit is contained in:
@@ -170,7 +170,7 @@ export class ModelManagementController extends ControllerBase {
|
||||
});
|
||||
view.on(PredictWizardEventName, async (args) => {
|
||||
const models = <ImportedModel[] | undefined>args;
|
||||
await this.executeAction(view, PredictWizardEventName, args, this.predictModel, models, view, this, this._apiWrapper, this._root);
|
||||
await this.executeAction(view, PredictWizardEventName, args, this.predictModel, models, undefined, this, this._apiWrapper, this._root);
|
||||
});
|
||||
view.on(EditModelEventName, async (args) => {
|
||||
const model = <ImportedModel>args;
|
||||
|
||||
Reference in New Issue
Block a user