PAMapp/components/Ui/UiDateFormat.vue
@@ -20,7 +20,7 @@ if (!this.date) return; const toDatePromise = new Promise((resolve, reject) => { const date: Date = typeof(this.date) === 'string' ? new Date(this.date) : this.date; const date: Date = typeof(this.date) === 'string' ? new Date(this.date) : this.date as Date; resolve(date); });