From 41bc5df9cda6a43ef47313622dd1ffde1480d06f Mon Sep 17 00:00:00 2001 From: KillerADO <wayne8692wayne8692@gmail.com> Date: 星期四, 23 十二月 2021 10:49:04 +0800 Subject: [PATCH] [update] 調整簡訊的service url與新增簡訊的標題欄位 --- PAMapp/components/Ui/UiDateFormat.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Ui/UiDateFormat.vue b/PAMapp/components/Ui/UiDateFormat.vue index b929e7b..7decbf2 100644 --- a/PAMapp/components/Ui/UiDateFormat.vue +++ b/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); }); -- Gitblit v1.8.0