@indigina/ui-kit 1.1.474 → 1.1.475
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11611,7 +11611,7 @@ class KitGridCellService {
|
|
|
11611
11611
|
}
|
|
11612
11612
|
createCellValue(columnType, columnField, dataItem, translationMap = {}, defaultValue = '') {
|
|
11613
11613
|
const value = this.getCellValue(dataItem, columnField);
|
|
11614
|
-
if (columnField in translationMap && value) {
|
|
11614
|
+
if (columnField in translationMap && value != null && value !== '') {
|
|
11615
11615
|
return this.translateService.instant(translationMap[columnField](value)) ?? defaultValue;
|
|
11616
11616
|
}
|
|
11617
11617
|
switch (columnType) {
|