FIX: Display the whole summary when it consists of multiple <p> tags. (#22568)

This commit is contained in:
Roman Rizzi 2023-07-12 13:48:29 -03:00 committed by GitHub
parent 10f6395545
commit 6892324767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: `<div>${state.summary}</div>` }));
html.push(
h(
"div.summarized-on",