From 28b0d827b9447c5d39bec2aa816c1d199ecdd505 Mon Sep 17 00:00:00 2001 From: Leila Lali Date: Wed, 12 Aug 2020 09:31:26 -0700 Subject: [PATCH] Changed the order of pages in import model wizard based on the new design (#11579) --- .../src/views/models/manageModels/importModelWizard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;