@seniorsistemas/angular-components 17.8.4 → 17.8.5

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.
@@ -8220,7 +8220,7 @@ var TableColumnsComponent = /** @class */ (function () {
8220
8220
  return column.prefix ? column.prefix : this.hostProjectConfigs.domain + "." + this.hostProjectConfigs.service + ".";
8221
8221
  };
8222
8222
  TableColumnsComponent.prototype.isAttributeValueInvalid = function (attributeValue) {
8223
- return attributeValue === null || attributeValue === undefined || (this.isArray(attributeValue) && !attributeValue.length);
8223
+ return !attributeValue || (this.isArray(attributeValue) && !attributeValue.length);
8224
8224
  };
8225
8225
  TableColumnsComponent.prototype.getFormattedColumnValue = function (column, columnValue, unifiedColumnValues, uninformedText, uninformedNumber) {
8226
8226
  if (uninformedNumber === column.attributes.length) {