From f01f84885d939fc181a926e31795060c9e9e2316 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 28 Mar 2023 14:43:50 -0600 Subject: [PATCH] Calendar: Fix fallback icon if owner / participant has no lavatar --- 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 53f3e8e54c..e18b237e49 100644 --- a/calendar/js/CalendarOwner.ts +++ b/calendar/js/CalendarOwner.ts @@ -108,7 +108,7 @@ export class CalendarOwner extends Et2Select if(!option.fname && !option.lname && !option.icon && option.app) { return html` - `; + `; } // lavatar uses a size property, not a CSS variable let style = getComputedStyle(this);