Skip to content

Commit

Permalink
fix: sort & partially filter
Browse files Browse the repository at this point in the history
  • Loading branch information
d-koppenhagen committed Oct 2, 2024
1 parent 310ddc8 commit 3615e9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AddressList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function sortBy(key: SortKey) {
// Filter and sort addresses based on the search query and selected sort column
const filteredAndSortedAddresses = computed(() => {
return (
addressStore.addresses
[...addressStore.addresses]
// filter by category
.filter((address) => {
if (selectedIsophoneFilterIndex.value === 'all') {
Expand Down

0 comments on commit 3615e9e

Please sign in to comment.