keevo-components 1.1.5 → 1.1.7

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.
@@ -925,7 +925,7 @@ class TableComponent {
925
925
  if (col.field == 'valor')
926
926
  return value.toFixed(2);
927
927
  else if (!col.pipe) {
928
- if (value.indexOf("_") != -1) {
928
+ if (value.toString().indexOf("_") != -1) {
929
929
  return value.replaceAll("_", "-");
930
930
  }
931
931
  else