From 0a1c51742d27e0909d02fda3dc0e5b9bd0fdb3fd Mon Sep 17 00:00:00 2001 From: Hamza Mahjoubi Date: Thu, 9 Jan 2025 22:03:22 +0700 Subject: [PATCH] fix: share address books with user groups Signed-off-by: Hamza Mahjoubi --- .../AppNavigation/Settings/SettingsAddressbookShare.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/AppNavigation/Settings/SettingsAddressbookShare.vue b/src/components/AppNavigation/Settings/SettingsAddressbookShare.vue index e3e9bd1ae..b9c17a7b3 100644 --- a/src/components/AppNavigation/Settings/SettingsAddressbookShare.vue +++ b/src/components/AppNavigation/Settings/SettingsAddressbookShare.vue @@ -121,7 +121,7 @@ export default { this.usersOrGroups = results .filter((result) => { const allowedCalendarUserTypes = ['INDIVIDUAL'] - if (this.isGroupSharingEnabled) { + if (isGroupSharingEnabled) { allowedCalendarUserTypes.push('GROUP') } return allowedCalendarUserTypes.includes(result.calendarUserType)