From 5218aa3c43f2dd990ff242554a99acfec11d459e Mon Sep 17 00:00:00 2001 From: d11n Date: Sat, 18 Feb 2023 12:38:02 +0100 Subject: [PATCH] Fix missing style tag around embedded CSS (#4659) --- BTCPayServer/Views/Shared/LayoutHeadStoreBranding.cshtml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BTCPayServer/Views/Shared/LayoutHeadStoreBranding.cshtml b/BTCPayServer/Views/Shared/LayoutHeadStoreBranding.cshtml index 7057a8bbe..8f585dd61 100644 --- a/BTCPayServer/Views/Shared/LayoutHeadStoreBranding.cshtml +++ b/BTCPayServer/Views/Shared/LayoutHeadStoreBranding.cshtml @@ -31,5 +31,7 @@ } @if (!string.IsNullOrEmpty(Model.EmbeddedCSS)) { - @Safe.Raw(Model.EmbeddedCSS) + }