cell display refactor

This commit is contained in:
SPRINX0\prochazka
2024-08-23 16:19:04 +02:00
parent 23a52dc79e
commit 3b813e93e7
8 changed files with 189 additions and 132 deletions

View File

@@ -37,7 +37,7 @@
function createColumnsTable(cells) {
if (cells.length == 0) return '';
return `<table>${cells
.map(cell => `<tr><td>${cell.column}</td><td>${stringifyCellValue(cell.value)}</td></tr>`)
.map(cell => `<tr><td>${cell.column}</td><td>${stringifyCellValue(cell.value, 'exportIntent').value}</td></tr>`)
.join('\n')}</table>`;
}