This commit is contained in:
zuzanna-maria 2024-12-09 14:44:59 +01:00
parent 1354b0a238
commit 8d5ac837a1

View File

@ -114,7 +114,7 @@ define([
if (cellContent.length > 1) {
var cellString = '';
cellContent.forEach(function(string) {
var stringContent = string.childNodes.length ? string.innerHTML : string.textContent
var stringContent = string.childNodes.length ? string.innerHTML : string.textContent;
if (string.nodeType === 3) {
cellString += stringContent;
} else if (string.nodeName === "BR") {