mirror of
https://github.com/wekan/wekan.git
synced 2025-12-17 07:50:12 +01:00
Fixed end date return
This commit is contained in:
parent
cfe500794c
commit
e9b9af4616
1 changed files with 1 additions and 2 deletions
|
|
@ -102,8 +102,7 @@ BlazeComponent.extendComponent({
|
||||||
endDate() {
|
endDate() {
|
||||||
const endDate = this.currentData().activity.card();
|
const endDate = this.currentData().activity.card();
|
||||||
if (!endDate) return null;
|
if (!endDate) return null;
|
||||||
// return endDate.getEnd();
|
return endDate.endAt;
|
||||||
return endDate.getEnd().format('YYYY-MM-DD HH:mm');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
lastLabel() {
|
lastLabel() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue