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

@@ -75,7 +75,7 @@ export async function getClipboardText() {
export function extractRowCopiedValue(row, col, editorTypes?: DataEditorTypesBehaviour) {
let value = row[col];
if (value === undefined) value = _.get(row, col);
return stringifyCellValue(value, editorTypes);
return stringifyCellValue(value, 'exportIntent', editorTypes).value;
}
const clipboardHeadersFormatter = delimiter => columns => {