diff --git a/ui/src/components/layout/TopNavBar.vue b/ui/src/components/layout/TopNavBar.vue index a1d037c1ba..370ff216d0 100644 --- a/ui/src/components/layout/TopNavBar.vue +++ b/ui/src/components/layout/TopNavBar.vue @@ -124,6 +124,7 @@ }, computed: { ...mapState("api", ["version"]), + ...mapState("core", ["tutorialFlows"]), ...mapGetters("core", ["guidedProperties"]), ...mapGetters("auth", ["user"]), displayNavBar() { @@ -131,7 +132,7 @@ }, tourEnabled(){ // Temporary solution to not showing the tour menu item for EE - return !Object.keys(this.user).length + return this.tutorialFlows?.length && !Object.keys(this.user).length } }, methods: { diff --git a/ui/src/components/onboarding/VueTour.vue b/ui/src/components/onboarding/VueTour.vue index b83a0059d0..f2c050970d 100644 --- a/ui/src/components/onboarding/VueTour.vue +++ b/ui/src/components/onboarding/VueTour.vue @@ -27,7 +27,7 @@
- +