Merge pull request #435 from dod-ccpo/fix-status-filter-bug

Fix bug on status filter for members list
This commit is contained in:
patricksmithdds 2018-11-07 10:08:17 -05:00 committed by GitHub
commit 7740758cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ const filterByStatus = (status, members) => {
return members
} else {
return members.filter(
(member) => member.status === status
(member) => member.status.toLowerCase() === status
)
}
}