mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-12 23:08:35 +00:00
fix(multiassign): don't allow nonmanagers to uncheck from footer
This commit is contained in:
parent
1d048e0c35
commit
40af14b061
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
iconClass (completion) {
|
||||
if ((this.userIsAssigned || this.userIsManager) && completion.completed) return 'check';
|
||||
if (this.userIsManager && completion.completed) return 'check';
|
||||
return 'lock';
|
||||
},
|
||||
needsWork (completion) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue