[F] Fix: Filter assignments based on value of type

This commit is contained in:
Hykilpikonna
2019-11-05 17:51:22 -05:00
parent fba589d6fe
commit 56769e4518
@@ -24,7 +24,8 @@
created()
{
// Filter assignments to only this type
this.filteredAssignments = this.assignments.filter(a => a.type === this.typeName);
this.filteredAssignments = this.assignments.filter(a => a.type == this.typeName);
}
}
</script>