keevo-components 1.2.9 → 1.2.10
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.
|
@@ -923,7 +923,7 @@ class TableComponent {
|
|
|
923
923
|
let value = rowData[col.field];
|
|
924
924
|
if (value != null) {
|
|
925
925
|
if (col.field == 'vencimento' || col.field == 'datapublicacao')
|
|
926
|
-
return value.
|
|
926
|
+
return value.toDateString();
|
|
927
927
|
if (col.field == 'valor')
|
|
928
928
|
return value.toFixed(2);
|
|
929
929
|
else if (!col.pipe) {
|