Fixed a bug with deleting models from list in import model wizard (#12798)

This commit is contained in:
Leila Lali
2020-10-08 16:46:26 -07:00
committed by GitHub
parent b910bf2f33
commit 2820fb4f15
4 changed files with 101 additions and 3 deletions

View File

@@ -213,6 +213,7 @@ export const invalidModelImportTargetError = localize('models.invalidModelImport
export const columnDataTypeMismatchWarning = localize('models.columnDataTypeMismatchWarning', "The data type of the source table column does not match the required input fields type.");
export const outputColumnDataTypeNotSupportedWarning = localize('models.outputColumnDataTypeNotSupportedWarning', "The data type of output column does not match the output fields type.");
export const modelNameRequiredError = localize('models.modelNameRequiredError', "Model name is required.");
export const modelsRequiredError = localize('models.modelsRequiredError', "Please select at least one model to import.");
export const updateModelFailedError = localize('models.updateModelFailedError', "Failed to update the model");
export const modelSchemaIsAcceptedMessage = localize('models.modelSchemaIsAcceptedMessage', "Table meets requirements!");
export const selectModelsTableMessage = localize('models.selectModelsTableMessage', "Select models table");