Browse Source

fix(nc-gui): member count issue (#8797)

pull/8802/head
Ramesh Mane 2 weeks ago committed by GitHub
parent
commit
9ec424cff0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      packages/nc-gui/components/project/View.vue

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

@ -39,7 +39,9 @@ const { projectPageTab } = storeToRefs(useConfigStore())
const { isMobileMode } = useGlobal()
const userCount = computed(() => (activeProjectId.value ? basesUser.value.get(activeProjectId.value)?.length : 0))
const userCount = computed(() =>
activeProjectId.value ? basesUser.value.get(activeProjectId.value)?.filter((user) => !user?.deleted)?.length : 0,
)
watch(
() => route.value.query?.page,

Loading…
Cancel
Save