diff --git a/web/satellite/src/components/accessGrants/ProgressBar.vue b/web/satellite/src/components/accessGrants/ProgressBar.vue index 3231f691e..1eb627c07 100644 --- a/web/satellite/src/components/accessGrants/ProgressBar.vue +++ b/web/satellite/src/components/accessGrants/ProgressBar.vue @@ -38,35 +38,35 @@ export default class ProgressBar extends Vue { * Indicates if current route is on name step. */ public get isNameStep(): boolean { - return this.$route.name === RouteConfig.NameStep.name || this.$route.name === RouteConfig.AccessGrantName.name; + return this.$route.name === RouteConfig.NameStep.name; } /** * Indicates if current route is on permissions step. */ public get isPermissionsStep(): boolean { - return this.$route.name === RouteConfig.PermissionsStep.name || this.$route.name === RouteConfig.AccessGrantPermissions.name; + return this.$route.name === RouteConfig.PermissionsStep.name; } /** * Indicates if current route is on passphrase step. */ public get isPassphraseStep(): boolean { - return this.$route.name === RouteConfig.CreatePassphraseStep.name || this.$route.name === RouteConfig.EnterPassphraseStep.name || this.$route.name === RouteConfig.AccessGrantPassphrase.name; + return this.$route.name === RouteConfig.CreatePassphraseStep.name || this.$route.name === RouteConfig.EnterPassphraseStep.name; } /** * Indicates if current route is on result step. */ public get isResultStep(): boolean { - return this.$route.name === RouteConfig.ResultStep.name || this.$route.name === RouteConfig.AccessGrantResult.name; + return this.$route.name === RouteConfig.ResultStep.name; } /** * Indicates if current route is on gateway step. */ public get isGatewayStep(): boolean { - return this.$route.name === RouteConfig.GatewayStep.name || this.$route.name === RouteConfig.AccessGrantGateway.name; + return this.$route.name === RouteConfig.GatewayStep.name; } } diff --git a/web/satellite/src/components/accessGrants/steps/CLIStep.vue b/web/satellite/src/components/accessGrants/steps/CLIStep.vue index d1df47197..25e3fca62 100644 --- a/web/satellite/src/components/accessGrants/steps/CLIStep.vue +++ b/web/satellite/src/components/accessGrants/steps/CLIStep.vue @@ -2,7 +2,7 @@ // See LICENSE for copying information.