diff --git a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue index 509654013..3f2f4ed6f 100644 --- a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue +++ b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue @@ -171,20 +171,24 @@ const menuItems = computed(() => { name: 'Captain', icon: 'i-woot-captain', label: t('SIDEBAR.CAPTAIN'), + showOnlyOnCloud: true, children: [ { name: 'Assistants', label: t('SIDEBAR.CAPTAIN_ASSISTANTS'), + showOnlyOnCloud: true, to: accountScopedRoute('captain_assistants_index'), }, { name: 'Documents', label: t('SIDEBAR.CAPTAIN_DOCUMENTS'), + showOnlyOnCloud: true, to: accountScopedRoute('captain_documents_index'), }, { name: 'Responses', label: t('SIDEBAR.CAPTAIN_RESPONSES'), + showOnlyOnCloud: true, to: accountScopedRoute('captain_responses_index'), }, ],