@seniorsistemas/angular-components 16.10.4 → 16.10.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.
@@ -4203,11 +4203,11 @@
4203
4203
  .then(function (metadata) { return _this.setModifiedDate(metadata); });
4204
4204
  };
4205
4205
  FileUploadComponent.prototype.setModifiedDate = function (metadata) {
4206
- var hour = moment$4(metadata.modified).hour();
4207
- var minutes = moment$4(metadata.modified).minutes();
4208
- var day = moment$4(metadata.modified).date();
4209
- var month = moment$4(metadata.modified).month();
4210
- var fullYear = moment$4(metadata.modified).year();
4206
+ var hour = moment$4(metadata.modified).format("HH");
4207
+ var minutes = moment$4(metadata.modified).format("mm");
4208
+ var day = moment$4(metadata.modified).format("DD");
4209
+ var month = moment$4(metadata.modified).format("MM");
4210
+ var fullYear = moment$4(metadata.modified).format("YYYY");
4211
4211
  this.modifiedDate = this.translate.instant("platform.angular_components.date_modified_custom_blob", { hour: hour, minutes: minutes, day: day, month: month, fullYear: fullYear });
4212
4212
  };
4213
4213
  var FileUploadComponent_1;