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())) {