From cb31dbcf6ff3e2d5839e2e178a1bae3db88abe96 Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Thu, 28 Mar 2024 16:14:51 +1100 Subject: [PATCH] feat: add br tag support to the i18n component for triggering html rendering --- ts/components/basic/I18n.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/basic/I18n.tsx b/ts/components/basic/I18n.tsx index 5b29dcb71..9b827abda 100644 --- a/ts/components/basic/I18n.tsx +++ b/ts/components/basic/I18n.tsx @@ -9,7 +9,7 @@ import type { import { SessionHtmlRenderer } from './SessionHTMLRenderer'; /** An array of supported html tags to render if found in a string */ -const supportedFormattingTags = ['b', 'i', 'u', 's']; +const supportedFormattingTags = ['b', 'i', 'u', 's', 'br']; /** A regex to match supported formatting tags */ const formattingTagRegex = new RegExp(