fix: refs #6897 enhance column value formatting to include text value fallback #1459

Merged
pablone merged 2 commits from 6897-fixUpdatedValueOnList into test 2025-02-21 07:07:54 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ function getToggleIcon(value) {
}
function formatColumnValue(col, row, dashIfEmpty) {
if (col?.format) {
if (col?.format || row[col?.name + 'TextValue']) {
if (selectRegex.test(col?.component) && row[col?.name + 'TextValue']) {
return dashIfEmpty(row[col?.name + 'TextValue']);
} else {