fix: refs #6897 enhance column value formatting to include text value fallback
gitea/salix-front/pipeline/pr-test This commit looks good Details

This commit is contained in:
Pablo Natek 2025-02-21 07:57:40 +01:00
parent 2889253c07
commit 206cecd213
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 {