mirror of
https://github.com/wekan/wekan.git
synced 2026-01-31 05:35:16 +01:00
Add checklist at top
This commit is contained in:
parent
3c1eff6241
commit
52d54f35a3
4 changed files with 45 additions and 2 deletions
|
|
@ -815,6 +815,18 @@ Cards.helpers({
|
|||
}
|
||||
},
|
||||
|
||||
firstChecklist() {
|
||||
const checklists = this.checklists().fetch();
|
||||
const ret = _.first(checklists);
|
||||
return ret;
|
||||
},
|
||||
|
||||
lastChecklist() {
|
||||
const checklists = this.checklists().fetch();
|
||||
const ret = _.last(checklists);
|
||||
return ret;
|
||||
},
|
||||
|
||||
checklistItemCount() {
|
||||
const checklists = this.checklists().fetch();
|
||||
return checklists
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue