浏览代码

added the start , due , end hour

Rayene123 3 月之前
父节点
当前提交
827ee615c1
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      client/components/cards/cardDate.js

+ 3 - 3
client/components/cards/cardDate.js

@@ -322,19 +322,19 @@ CardCustomFieldDate.register('cardCustomFieldDate');
 
 (class extends CardStartDate {
   showDate() {
-    return this.date.get().format('L');
+    return this.date.get().format('YYYY-MM-DD HH:mm');
   }
 }.register('minicardStartDate'));
 
 (class extends CardDueDate {
   showDate() {
-    return this.date.get().format('L');
+    return this.date.get().format('YYYY-MM-DD HH:mm');
   }
 }.register('minicardDueDate'));
 
 (class extends CardEndDate {
   showDate() {
-    return this.date.get().format('L');
+    return this.date.get().format('YYYY-MM-DD HH:mm');
   }
 }.register('minicardEndDate'));