@alfresco/adf-core 8.4.0-19165518976 → 8.4.0-19168644215
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.
package/fesm2022/adf-core.mjs
CHANGED
|
@@ -13738,7 +13738,7 @@ class DataTableCellComponent {
|
|
|
13738
13738
|
}
|
|
13739
13739
|
const rawValue = value;
|
|
13740
13740
|
const max = this.column?.maxTextLength;
|
|
13741
|
-
if (typeof max === 'number' && max > 0 && rawValue
|
|
13741
|
+
if (typeof max === 'number' && max > 0 && rawValue?.length > max) {
|
|
13742
13742
|
return rawValue;
|
|
13743
13743
|
}
|
|
13744
13744
|
return '';
|