fix: list properties were not correctly rendered for some renderer types

This commit is contained in:
Marc Satkowski 2025-04-08 23:56:41 +02:00
parent 4f9d04200e
commit cc987c7cc7

View file

@ -43,6 +43,8 @@ export class ModernCellParser {
if (i < parsed.length -1) {
container.appendChild(document.createTextNode(', '))
}
} else if (typeof rendered === 'string') {
container.textContent += `${rendered}${i < parsed.length - 1 ? ', ' : ''}`
}
})
return container