Browse Source

fix: Fixed issue with project view tab state was not getting reset

pull/6539/head
Muhammed Mustafa 1 year ago
parent
commit
ebfdb4650c
  1. 2
      packages/nc-gui/components/project/AccessSettings.vue
  2. 4
      packages/nc-gui/components/project/View.vue

2
packages/nc-gui/components/project/AccessSettings.vue

@ -174,7 +174,7 @@ onMounted(async () => {
v-else-if="!collaborators?.length" v-else-if="!collaborators?.length"
class="nc-collaborators-list w-full h-full flex flex-col items-center justify-center mt-36" class="nc-collaborators-list w-full h-full flex flex-col items-center justify-center mt-36"
> >
<Empty :description="$t('title.noMembersFound')" /> <!-- <Empty :description="$t('title.noMembersFound')" /> -->
</div> </div>
<div v-else class="nc-collaborators-list nc-scrollbar-md"> <div v-else class="nc-collaborators-list nc-scrollbar-md">
<div class="nc-collaborators-list-header"> <div class="nc-collaborators-list-header">

4
packages/nc-gui/components/project/View.vue

@ -35,7 +35,11 @@ watch(
} else { } else {
projectPageTab.value = 'allTable' projectPageTab.value = 'allTable'
} }
return
} }
projectPageTab.value = 'allTable'
}, },
{ immediate: true }, { immediate: true },
) )

Loading…
Cancel
Save