fixed for shorten names

This commit is contained in:
SPRINX0\prochazka
2025-09-25 10:48:43 +02:00
parent 78026f7fa5
commit 925e3a67da
3 changed files with 13 additions and 4 deletions

View File

@@ -38,7 +38,9 @@
export let overlayValue = null;
export let isMissingOverlayField = false;
$: value = col.isStructured ? _.get(rowData || {}, col.uniquePath) : (rowData || {})[col.uniqueName];
$: value = col.isStructured
? _.get(rowData || {}, col.uniquePath)
: (rowData || {})[col.uniqueNameShorten ?? col.uniqueName];
function computeStyle(maxWidth, col) {
let res = '';