[O] Remove unnecessary complete verification

This commit is contained in:
Hykilpikonna
2019-11-09 20:45:12 -05:00
parent 4fe0a54277
commit f6d44dd1f2
@@ -30,7 +30,7 @@
get filteredAssignments() get filteredAssignments()
{ {
// Filter assignments to only this type // Filter assignments to only this type
return this.assignments.filter(a => a.complete == 'Complete' && a.type == this.typeName); return this.assignments.filter(a => a.typeId == this.type.id);
} }
} }
</script> </script>