summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDate.js
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-05-26 08:27:07 +0300
committerLauri Ojansivu <x@xet7.org>2018-05-26 08:27:07 +0300
commit73c4806864896559573701044c78a36ecacd9283 (patch)
treed56310adc2e9ae8a0dd89efc093274ea0cff1e54 /client/components/cards/cardDate.js
parent01741750f8de322b0e01941c0438666f95b42c47 (diff)
parentb0cf60a3d9d458ab894cc237d9ffefa18cf2fe65 (diff)
downloadwekan-73c4806864896559573701044c78a36ecacd9283.tar.gz
wekan-73c4806864896559573701044c78a36ecacd9283.tar.bz2
wekan-73c4806864896559573701044c78a36ecacd9283.zip
Merge branch 'xadagaras-bugfix/received_end_date_picker' into devel
Diffstat (limited to 'client/components/cards/cardDate.js')
-rw-r--r--client/components/cards/cardDate.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/client/components/cards/cardDate.js b/client/components/cards/cardDate.js
index f33e8c19..52a48f47 100644
--- a/client/components/cards/cardDate.js
+++ b/client/components/cards/cardDate.js
@@ -93,7 +93,7 @@ Template.dateBadge.helpers({
});
// editCardReceivedDatePopup
-(class extends EditCardDate {
+(class extends DatePicker {
onCreated() {
super.onCreated();
this.data().receivedAt && this.date.set(moment(this.data().receivedAt));
@@ -156,7 +156,7 @@ Template.dateBadge.helpers({
}).register('editCardDueDatePopup');
// editCardEndDatePopup
-(class extends EditCardDate {
+(class extends DatePicker {
onCreated() {
super.onCreated();
this.data().endAt && this.date.set(moment(this.data().endAt));
@@ -355,4 +355,3 @@ CardEndDate.register('cardEndDate');
return this.date.get().format('l');
}
}).register('minicardEndDate');
-