FIX: Display the whole summary when it consists of multiple <p> tags. (#22568)
This commit is contained in:
parent
10f6395545
commit
6892324767
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue