Browse Source

fix: Breadcrumb table clickable bug fix

pull/6827/head
Muhammed Mustafa 11 months ago
parent
commit
1f0f60742b
  1. 10
      packages/nc-gui/components/smartsheet/toolbar/ViewInfo.vue

10
packages/nc-gui/components/smartsheet/toolbar/ViewInfo.vue

@ -104,12 +104,12 @@ const openedBaseUrl = computed(() => {
display: 'inline', display: 'inline',
}" }"
> >
<template v-if="activeView?.is_default">
{{ activeTable?.title }}
</template>
<NuxtLink <NuxtLink
class="!text-inherit !underline-transparent" v-else
:class="{ class="!text-inherit !underline-transparent !hover:(text-black underline-gray-600)"
'!hover:(underline-transparent text-gray-800)': activeView?.is_default,
'!hover:(text-black underline-gray-600)': !activeView?.is_default,
}"
:to="tableUrl({ table: activeTable, completeUrl: true })" :to="tableUrl({ table: activeTable, completeUrl: true })"
> >
{{ activeTable?.title }} {{ activeTable?.title }}

Loading…
Cancel
Save