We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0777d58 + 8cc9b2f commit fec0662Copy full SHA for fec0662
src/components/Article/ArticleCellOutputsAsIframe.jsx
@@ -58,7 +58,7 @@ const ArticleCellOutputsAsIframe = ({
58
// text/html
59
if (output.data['text/html']) {
60
if (Array.isArray(output.data['text/html'])) {
61
- acc.push(...output.data['text/html'])
+ acc = acc.concat(output.data['text/html']);
62
} else {
63
acc.push(output.data['text/html'])
64
}
0 commit comments