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 = [];
|
const html = [];
|
||||||
|
|
||||||
if (state.summary) {
|
if (state.summary) {
|
||||||
html.push(new RawHtml({ html: state.summary }));
|
html.push(new RawHtml({ html: `<div>${state.summary}</div>` }));
|
||||||
html.push(
|
html.push(
|
||||||
h(
|
h(
|
||||||
"div.summarized-on",
|
"div.summarized-on",
|
||||||
|
|
Loading…
Reference in New Issue