Browse Source

Merge pull request #7194 from nocodb/fix/editor-user-list

fix: Load userList only if allowed
pull/7200/head
Raju Udava 12 months ago committed by GitHub
parent
commit
bbdfc4884a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/View.vue

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

@ -35,7 +35,7 @@ const baseSettingsState = ref('')
const userCount = isEeUI ? workspaceUserCount : baseUserCount
const updateBaseUserCount = async () => {
if (!baseUserCount) return
if (!baseUserCount || !isUIAllowed('newUser')) return
try {
const { totalRows } = await getProjectUsers({

Loading…
Cancel
Save