@indigina/ui-kit 1.1.454 → 1.1.455
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.
|
@@ -10793,6 +10793,8 @@ class KitGridCellService {
|
|
|
10793
10793
|
switch (columnType) {
|
|
10794
10794
|
case 'number':
|
|
10795
10795
|
return this.decimalPipe.transform(value) ?? defaultValue;
|
|
10796
|
+
case 'plainNumber':
|
|
10797
|
+
return value || defaultValue;
|
|
10796
10798
|
case 'date':
|
|
10797
10799
|
return this.datePipe.transform(value, this.dateFormat, 'UTC') ?? defaultValue;
|
|
10798
10800
|
case 'dateTime':
|