mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-25 13:16:00 +00:00
fixed for shorten names
This commit is contained in:
@@ -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 = '';
|
||||
|
||||
Reference in New Issue
Block a user