Browse Source

fix: Removed translation for share base ee

pull/6539/head
Muhammed Mustafa 12 months ago
parent
commit
68c64a1bb5
  1. 4
      packages/nc-gui/components/smartsheet/Topbar.vue

4
packages/nc-gui/components/smartsheet/Topbar.vue

@ -14,6 +14,8 @@ const { isLeftSidebarOpen } = storeToRefs(useSidebarStore())
const { isMobileMode } = storeToRefs(useConfigStore())
const { appInfo } = useGlobal()
const isSharedBase = computed(() => route.value.params.typeOrId === 'base')
</script>
@ -42,7 +44,7 @@ const isSharedBase = computed(() => route.value.params.typeOrId === 'base')
/>
<LazyGeneralLanguage
v-if="isSharedBase"
v-if="isSharedBase && !appInfo.ee"
class="cursor-pointer text-lg hover:(text-black bg-gray-200) mr-0 p-1.5 rounded-md"
/>
</template>

Loading…
Cancel
Save