diff --git a/web/satellite/src/components/accessGrants/ProgressBar.vue b/web/satellite/src/components/accessGrants/ProgressBar.vue index 5cfec69c5..b1edd62d9 100644 --- a/web/satellite/src/components/accessGrants/ProgressBar.vue +++ b/web/satellite/src/components/accessGrants/ProgressBar.vue @@ -36,28 +36,28 @@ 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; + return this.$route.name === RouteConfig.NameStep.name || this.$route.name === RouteConfig.AccessGrantName.name; } /** * Indicates if current route is on permissions step. */ public get isPermissionsStep(): boolean { - return this.$route.name === RouteConfig.PermissionsStep.name; + return this.$route.name === RouteConfig.PermissionsStep.name || this.$route.name === RouteConfig.AccessGrantPermissions.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; + return this.$route.name === RouteConfig.CreatePassphraseStep.name || this.$route.name === RouteConfig.EnterPassphraseStep.name || this.$route.name === RouteConfig.AccessGrantPassphrase.name; } /** * Indicates if current route is on result step. */ public get isResultStep(): boolean { - return this.$route.name === RouteConfig.ResultStep.name; + return this.$route.name === RouteConfig.ResultStep.name || this.$route.name === RouteConfig.AccessGrantResult.name; } } diff --git a/web/satellite/src/components/accessGrants/permissions/BucketsSelection.vue b/web/satellite/src/components/accessGrants/permissions/BucketsSelection.vue index 8cbc05aa0..0b93c813a 100644 --- a/web/satellite/src/components/accessGrants/permissions/BucketsSelection.vue +++ b/web/satellite/src/components/accessGrants/permissions/BucketsSelection.vue @@ -5,6 +5,7 @@
Enter a name for your new Access grant to get started.