fix(groups): style and data sync fixes

This commit is contained in:
SabreCat
2022-07-28 15:53:29 -05:00
parent e0e9381584
commit 7f8e44ff49
4 changed files with 61 additions and 72 deletions

View File

@@ -1061,7 +1061,7 @@ export default {
},
isOpenTask () {
if (!this.isGroupTask) return false;
if (this.task.group.assignedUsers.length > 0) return false;
if (this.task?.group?.assignedUsers?.length > 0) return false;
return true;
},
showCheckIcon () {