diff --git a/packages/nc-gui/components/project/AccessSettings.vue b/packages/nc-gui/components/project/AccessSettings.vue index a59be618d7..f3f77a4c31 100644 --- a/packages/nc-gui/components/project/AccessSettings.vue +++ b/packages/nc-gui/components/project/AccessSettings.vue @@ -176,7 +176,7 @@ onMounted(async () => { v-else-if="!collaborators?.length" class="nc-collaborators-list w-full h-full flex flex-col items-center justify-center mt-36" > - +
diff --git a/packages/nc-gui/components/workspace/CollaboratorsList.vue b/packages/nc-gui/components/workspace/CollaboratorsList.vue index 197ce7771e..2d1da65ab6 100644 --- a/packages/nc-gui/components/workspace/CollaboratorsList.vue +++ b/packages/nc-gui/components/workspace/CollaboratorsList.vue @@ -55,7 +55,7 @@ onMounted(async () => {
- +
diff --git a/packages/nc-gui/components/workspace/InviteSection.vue b/packages/nc-gui/components/workspace/InviteSection.vue index ec7bdca84f..684013ca6e 100644 --- a/packages/nc-gui/components/workspace/InviteSection.vue +++ b/packages/nc-gui/components/workspace/InviteSection.vue @@ -23,6 +23,13 @@ const inviteCollaborator = async () => { } } +watch(inviteData, (newVal) => { + console.log(newVal.email) + if (newVal.email[-1] === ',') { + console.log(newVal.email) + } +}) + // allow only lower roles to be assigned const allowedRoles = ref([])