@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.
- package/bundles/seniorsistemas-angular-components.umd.js +5 -5
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/file-upload/file-upload.component.js +6 -6
- package/esm5/components/file-upload/file-upload.component.js +6 -6
- package/fesm2015/seniorsistemas-angular-components.js +5 -5
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +5 -5
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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).
|
|
4207
|
-
var minutes = moment$4(metadata.modified).
|
|
4208
|
-
var day = moment$4(metadata.modified).
|
|
4209
|
-
var month = moment$4(metadata.modified).
|
|
4210
|
-
var fullYear = moment$4(metadata.modified).
|
|
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;
|