From 87a4404ca60b1da2daeea8fd4b4dfcff41d42c7b Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 3 Jun 2022 22:08:13 +0100 Subject: [PATCH] refactor: migration changes --- .../ClientApp/src/app/wizard/welcome/welcome.component.html | 6 +++--- .../ClientApp/src/app/wizard/welcome/welcome.component.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.html b/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.html index f32e59b8d..97d027c5d 100644 --- a/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.html +++ b/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.html @@ -1,6 +1,6 @@ 
- +
Welcome @@ -53,7 +53,7 @@
-
+ Ombi config
@@ -81,6 +81,6 @@
- +
\ No newline at end of file diff --git a/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.ts b/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.ts index d1a9c59eb..2ab230980 100644 --- a/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.ts +++ b/src/Ombi/ClientApp/src/app/wizard/welcome/welcome.component.ts @@ -1,10 +1,10 @@ -import { AfterViewInit, Component, OnInit, ViewChild } from "@angular/core"; +import { Component, OnInit, ViewChild } from "@angular/core"; import { IdentityService, NotificationService, SettingsService } from "../../services"; import { CustomizationFacade } from "../../state/customization/customization.facade"; import { ICreateWizardUser } from "../../interfaces"; import { IOmbiConfigModel } from "../models/OmbiConfigModel"; -import { MatHorizontalStepper } from'@angular/material/stepper'; +import { MatStepper } from'@angular/material/stepper'; import { Router } from "@angular/router"; import { WizardService } from "../services/wizard.service"; @@ -14,7 +14,7 @@ import { WizardService } from "../services/wizard.service"; }) export class WelcomeComponent implements OnInit { - @ViewChild('stepper', {static: false}) public stepper: MatHorizontalStepper; + @ViewChild('stepper', {static: false}) public stepper: MatStepper; public localUser: ICreateWizardUser; public config: IOmbiConfigModel;