From 2e632658adf92044ecf56576b009d27fcf2dea03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Tue, 24 Feb 2026 16:43:06 +0400 Subject: [PATCH] Fix warning --- app/components/icon.gjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/icon.gjs b/app/components/icon.gjs index 8a529ba..f00b68d 100644 --- a/app/components/icon.gjs +++ b/app/components/icon.gjs @@ -65,7 +65,9 @@ export default class IconComponent extends Component { } get style() { - return `width:${this.size}px;height:${this.size}px;color:${this.color}`; + return htmlSafe( + `width:${this.size}px;height:${this.size}px;color:${this.color}`, + ); } get title() {