Merge pull request 'fix: refs #6897 enhance column value formatting to include text value fallback' (!1459) from 6897-fixUpdatedValueOnList into test
gitea/salix-front/pipeline/pr-dev This commit looks good Details
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1459
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Pablo Natek 2025-02-21 07:07:53 +00:00
commit b611430d7a
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 {