Fix bug in allAreSelected

This commit is contained in:
Jeffrey Biles
2020-03-18 01:31:48 -07:00
parent bf1aeb4bd6
commit 8996330057

View File

@@ -26,7 +26,7 @@
return emailSelection.emails.size;
})
let allAreSelected = computed(() => {
return emails.length == numberSelected;
return emails.length == numberSelected.value;
})
let bulkSelect = function(){