From 3ffdd7d47fc5db485df9dfd116773f7889501325 Mon Sep 17 00:00:00 2001 From: sreehari jayaraj Date: Wed, 4 Oct 2023 17:51:55 +0000 Subject: [PATCH] fix: role change issue and role access --- packages/nc-gui/components/workspace/CollaboratorsList.vue | 1 + packages/nc-gui/components/workspace/InviteSection.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/nc-gui/components/workspace/CollaboratorsList.vue b/packages/nc-gui/components/workspace/CollaboratorsList.vue index 84e74cca3b..3ae6eedacf 100644 --- a/packages/nc-gui/components/workspace/CollaboratorsList.vue +++ b/packages/nc-gui/components/workspace/CollaboratorsList.vue @@ -83,6 +83,7 @@ onMounted(async () => { diff --git a/packages/nc-gui/components/workspace/InviteSection.vue b/packages/nc-gui/components/workspace/InviteSection.vue index 9b4d533db2..6c60c3913f 100644 --- a/packages/nc-gui/components/workspace/InviteSection.vue +++ b/packages/nc-gui/components/workspace/InviteSection.vue @@ -44,7 +44,7 @@ const insertOrUpdateString = (str: string) => { const emailInputValidation = (input: string): boolean => { if (!input.length) { emailValidation.isError = true - emailValidation.message = 'Email Should Not Be Empty' + emailValidation.message = 'Email should not be empty' return false } if (!validateEmail(input.trim())) {