keevo-components 0.8.6 → 0.8.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.
@@ -923,7 +923,7 @@ class TableComponent {
923
923
  if (col.field == 'vencimento')
924
924
  return value.toLocaleDateString();
925
925
  else if (!col.pipe) {
926
- if (value.length >= 25 && this.tableSize < 500) {
926
+ if (value.length > 25 && this.tableSize < 500) {
927
927
  return `${value.substring(0, 25)}...`;
928
928
  }
929
929
  else