From 0fe8129f52e7002a5d9c4c87bbd549831d40e203 Mon Sep 17 00:00:00 2001 From: FullGreaM Date: Mon, 27 Apr 2026 03:12:57 +0300 Subject: [PATCH] non-strict checking of a strings --- frontend/src/modules/Gefest/element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/modules/Gefest/element.ts b/frontend/src/modules/Gefest/element.ts index d92df3e..37c3fb8 100644 --- a/frontend/src/modules/Gefest/element.ts +++ b/frontend/src/modules/Gefest/element.ts @@ -218,7 +218,7 @@ export abstract class GefestElement { const rendered : string[] = []; for (const item of this.content) { if (typeof item === 'string') { - rendered.push(this.applyStyle(this.wrapHTML(item))); + rendered.push(item); } else if (item instanceof GefestElement) { if (!item.style && this.style) {