mirror of
https://github.com/wekan/wekan.git
synced 2026-01-28 20:26:09 +01:00
Card Details, hr line occured twice if any date or any user isn't displayed
This commit is contained in:
parent
013620c862
commit
81e617a149
2 changed files with 30 additions and 13 deletions
|
|
@ -865,6 +865,16 @@ Boards.helpers({
|
|||
});
|
||||
},
|
||||
|
||||
hasAnyAllowsDate() {
|
||||
const ret = this.allowsReceivedDate || this.allowsStartDate || this.allowsDueDate || this.allowsEndDate;
|
||||
return ret;
|
||||
},
|
||||
|
||||
hasAnyAllowsUser() {
|
||||
const ret = this.allowsCreator || this.allowsMembers || this.allowsAssignee || this.allowsRequestedBy || this.allowsAssignedBy;
|
||||
return ret;
|
||||
},
|
||||
|
||||
absoluteUrl() {
|
||||
return FlowRouter.url('board', { id: this._id, slug: this.slug });
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue