@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.
@@ -8366,7 +8366,7 @@
8366
8366
  return column.prefix ? column.prefix : this.hostProjectConfigs.domain + "." + this.hostProjectConfigs.service + ".";
8367
8367
  };
8368
8368
  TableColumnsComponent.prototype.isAttributeValueInvalid = function (attributeValue) {
8369
- return attributeValue === null || attributeValue === undefined || (this.isArray(attributeValue) && !attributeValue.length);
8369
+ return !attributeValue || (this.isArray(attributeValue) && !attributeValue.length);
8370
8370
  };
8371
8371
  TableColumnsComponent.prototype.getFormattedColumnValue = function (column, columnValue, unifiedColumnValues, uninformedText, uninformedNumber) {
8372
8372
  if (uninformedNumber === column.attributes.length) {