fix(multiassign): don't allow nonmanagers to uncheck from footer

This commit is contained in:
SabreCat
2022-05-05 15:16:30 -05:00
parent 1d048e0c35
commit 40af14b061

View File

@@ -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) {