Changed the order of pages in import model wizard based on the new design (#11579)

This commit is contained in:
Leila Lali
2020-08-12 09:31:26 -07:00
committed by GitHub
parent 01ea89a461
commit 28b0d827b9

View File

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