Browse Source

Merge pull request #6570 from nocodb/fix/user-project-role-change

Fixed issue user project role change
pull/6571/head
Raju Udava 11 months ago committed by GitHub
parent
commit
75054b87e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      packages/nc-gui/components/project/AccessSettings.vue

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

@ -96,6 +96,7 @@ const updateCollaborator = async (collab: any, roles: ProjectRoles) => {
await updateProjectUser(activeProjectId.value!, collab)
} else {
collab.roles = roles
collab.base_roles = roles
await createProjectUser(activeProjectId.value!, collab)
}
} catch (e: any) {

Loading…
Cancel
Save