Browse Source

Merge pull request #6347 from nocodb/fix/project-invite

fix: Project invite logic correction
pull/6351/head
mertmit 1 year ago committed by GitHub
parent
commit
d63af15387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      packages/nc-gui/components/project/InviteProjectCollabSection.vue

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

@ -26,10 +26,10 @@ const usersData = ref<{
const isInvitingCollaborators = ref(false)
const inviteCollaborator = async () => {
isInvitingCollaborators.value = true
if (isInvitingCollaborators.value) return
isInvitingCollaborators.value = true
try {
usersData.value = await inviteUser(inviteData)
usersData.roles = inviteData.roles

Loading…
Cancel
Save