Fixed a bug with validing empty table name (#13259)

This commit is contained in:
Leila Lali
2020-11-05 16:07:18 -08:00
committed by GitHub
parent 415a20f9f7
commit fe546e3791
2 changed files with 8 additions and 4 deletions

View File

@@ -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;