Fix Bug enable/disable Comments in Card Settings.

Thanks to warnt, mdurokov and xet7 !

Closes #2923
This commit is contained in:
Lauri Ojansivu 2020-02-07 02:34:57 +02:00
parent 8e7b9b73b5
commit 120a430deb

View file

@ -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 } };
},