Browse Source

fix: null check for baseUserCount

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/7186/head
mertmit 9 months ago
parent
commit
c4219da6b2
  1. 2
      packages/nc-gui/components/project/View.vue

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

@ -35,6 +35,8 @@ const baseSettingsState = ref('')
const userCount = isEeUI ? workspaceUserCount : baseUserCount
const updateBaseUserCount = async () => {
if (!baseUserCount) return
try {
const { totalRows } = await getProjectUsers({
baseId: activeProjectId.value!,

Loading…
Cancel
Save