keevo-components 0.8.9 → 0.9.0
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.
|
@@ -924,7 +924,7 @@ class TableComponent {
|
|
|
924
924
|
return value.toLocaleDateString();
|
|
925
925
|
else if (!col.pipe) {
|
|
926
926
|
if (value.length > 25 && this.tableSize < 500) {
|
|
927
|
-
return `${value.
|
|
927
|
+
return `${value.slice(0, 25)}...`;
|
|
928
928
|
}
|
|
929
929
|
else
|
|
930
930
|
return value;
|