From 1f928a66bb013d37c8d49ece0dfe7b9a98e5f135 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 17 Jul 2023 16:45:16 -0600 Subject: [PATCH] Calendar: Pre-fill some options in calendar owner/participant when select account preference is "selectbox" --- calendar/js/CalendarOwner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/js/CalendarOwner.ts b/calendar/js/CalendarOwner.ts index e48131104d..c3a53f68f2 100644 --- a/calendar/js/CalendarOwner.ts +++ b/calendar/js/CalendarOwner.ts @@ -51,7 +51,7 @@ export class CalendarOwner extends Et2StaticSelectMixin(Et2Select) // Start fetch of users const type = this.egw().preference('account_selection', 'common'); - if(!type || type == "none" || type == "selectbox") + if(!type || type == "none") { return; }