From c31236947c8d4f28ab2ce3c02d55a2f34a4a98e3 Mon Sep 17 00:00:00 2001 From: Luis de Dios Date: Tue, 25 Aug 2026 09:37:54 +0200 Subject: [PATCH] :bug: Fix skipped-tokens warning details show raw HTML tags instead of a bulleted list (#11325) --- frontend/src/app/main/ui/notifications.cljs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/app/main/ui/notifications.cljs b/frontend/src/app/main/ui/notifications.cljs index 47c038f835..a7cead63cc 100644 --- a/frontend/src/app/main/ui/notifications.cljs +++ b/frontend/src/app/main/ui/notifications.cljs @@ -35,6 +35,7 @@ [:> toast* {:level (or (:level notification) :info) :type (:type notification) + :is-html (:is-html notification) :detail (:detail notification) :on-close on-close} content] @@ -57,5 +58,6 @@ [:> toast* {:level (or (:level notification) :info) :type (:type notification) + :is-html (:is-html notification) :detail (:detail notification) :on-close on-close} content]))))