diff --git a/src/components/VnTable/VnTable.vue b/src/components/VnTable/VnTable.vue index e17c76e03..105010140 100644 --- a/src/components/VnTable/VnTable.vue +++ b/src/components/VnTable/VnTable.vue @@ -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 {