From 3348ecc5ee6749dcc547813597d53e64fe019991 Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 8 May 2026 21:45:44 +0200 Subject: [PATCH] fix: `false` is showing when `pulse` is not set --- src/status-indicator.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/status-indicator.ts b/src/status-indicator.ts index 3030101..4886a4f 100644 --- a/src/status-indicator.ts +++ b/src/status-indicator.ts @@ -44,7 +44,7 @@ class StatusIndicator extends WebComponent { ${ /** if pulse is set, add animation keyframes */ - this.props.pulse && html` + this.props.pulse ? html` ` + : + '' }` } }