mirror of
https://github.com/wekan/wekan.git
synced 2025-04-23 05:27:14 -04:00
Merge pull request #3373 from helioguardabaxo/master
Fixed end date return
This commit is contained in:
commit
d39b62503f
1 changed files with 1 additions and 2 deletions
|
@ -102,8 +102,7 @@ BlazeComponent.extendComponent({
|
|||
endDate() {
|
||||
const endDate = this.currentData().activity.card();
|
||||
if (!endDate) return null;
|
||||
// return endDate.getEnd();
|
||||
return endDate.getEnd().format('YYYY-MM-DD HH:mm');
|
||||
return endDate.endAt;
|
||||
},
|
||||
|
||||
lastLabel() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue