keevo-components 1.1.0 → 1.1.1

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.
@@ -919,7 +919,7 @@ class TableComponent {
919
919
  }
920
920
  transformValue(rowData, col) {
921
921
  let value = rowData[col.field];
922
- if (col.field == 'vencimento' && col.field != null)
922
+ if (col.field == 'vencimento' && value != null)
923
923
  return value.toLocaleDateString();
924
924
  if (col.field == 'valor')
925
925
  return value.toFixed(2);