From 6892324767679d86ccff068e8bcc2f4a14303792 Mon Sep 17 00:00:00 2001 From: Roman Rizzi Date: Wed, 12 Jul 2023 13:48:29 -0300 Subject: [PATCH] FIX: Display the whole summary when it consists of multiple

tags. (#22568) --- app/assets/javascripts/discourse/app/widgets/summary-box.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/app/widgets/summary-box.js b/app/assets/javascripts/discourse/app/widgets/summary-box.js index a3f00e4d8b5..ddb41e04dd5 100644 --- a/app/assets/javascripts/discourse/app/widgets/summary-box.js +++ b/app/assets/javascripts/discourse/app/widgets/summary-box.js @@ -34,7 +34,7 @@ export default createWidget("summary-box", { const html = []; if (state.summary) { - html.push(new RawHtml({ html: state.summary })); + html.push(new RawHtml({ html: `

${state.summary}
` })); html.push( h( "div.summarized-on",