Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v1.6.1 #154

Merged
merged 19 commits into from
Mar 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes for SDCI-94
  • Loading branch information
michaeltangbcgov committed Feb 14, 2024
commit c73aef4df01f09f35567676b917a5c085d034887
3 changes: 2 additions & 1 deletion frontend/src/views/ContactsView.vue
Original file line number Diff line number Diff line change
@@ -55,7 +55,8 @@ const transformContactForDownload = (inputData: any) => {
}
const filterOutYukon = (inputData: any) => {
return inputData.filter(
(contact) => contact.districtId !== '54396317-b444-063d-779e-e4d42ff7634f'
(contact: { districtId: string }) =>
contact.districtId !== '54396317-b444-063d-779e-e4d42ff7634f'
)
}
const searchContact = async () => {