We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0777d58 commit 8cc9b2fCopy full SHA for 8cc9b2f
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