mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Fix Bug enable/disable Comments in Card Settings.
Thanks to warnt, mdurokov and xet7 ! Closes #2923
This commit is contained in:
parent
8e7b9b73b5
commit
120a430deb
1 changed files with 6 additions and 2 deletions
|
@ -1095,8 +1095,8 @@ Boards.mutations({
|
|||
return { $set: { allowsChecklists } };
|
||||
},
|
||||
|
||||
setAllowsAssignee(allowsComments) {
|
||||
return { $set: { allowsComments } };
|
||||
setAllowsAssignee(allowsAssignee) {
|
||||
return { $set: { allowsAssignee } };
|
||||
},
|
||||
|
||||
setAllowsAssignedBy(allowsAssignedBy) {
|
||||
|
@ -1115,6 +1115,10 @@ Boards.mutations({
|
|||
return { $set: { allowsLabels } };
|
||||
},
|
||||
|
||||
setAllowsComments(allowsComments) {
|
||||
return { $set: { allowsComments } };
|
||||
},
|
||||
|
||||
setAllowsReceivedDate(allowsReceivedDate) {
|
||||
return { $set: { allowsReceivedDate } };
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue