mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
fix: list properties were not correctly rendered for some renderer types
This commit is contained in:
parent
4f9d04200e
commit
cc987c7cc7
1 changed files with 2 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue