diff --git a/extensions/machine-learning/src/views/models/manageModels/importModelWizard.ts b/extensions/machine-learning/src/views/models/manageModels/importModelWizard.ts index 7a74db20dc..6cd7cc9725 100644 --- a/extensions/machine-learning/src/views/models/manageModels/importModelWizard.ts +++ b/extensions/machine-learning/src/views/models/manageModels/importModelWizard.ts @@ -46,7 +46,7 @@ export class ImportModelWizard extends ModelViewBase { this.modelImportTargetPage = new ModelImportLocationPage(this._apiWrapper, this); this.wizardView = new WizardView(this._apiWrapper); - let wizard = this.wizardView.createWizard(constants.registerModelTitle, [this.modelImportTargetPage, this.modelSourcePage, this.modelBrowsePage, this.modelDetailsPage]); + let wizard = this.wizardView.createWizard(constants.registerModelTitle, [this.modelSourcePage, this.modelBrowsePage, this.modelDetailsPage, this.modelImportTargetPage]); this.mainViewPanel = wizard; wizard.doneButton.label = constants.azureRegisterModel;