Skip to content

Commit

Permalink
add header data search
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jul 22, 2024
1 parent 80b08b6 commit 2d87286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Frontend/src/pages/IndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const otherHeaders = computed(() => {
const filterTerm = filter.value?.toLowerCase()
if (filterTerm) {
return mailHeaderParts.value?.filter(header => header.headerName.toLowerCase().includes(filterTerm))
return mailHeaderParts.value?.filter(header => header.headerName.toLowerCase().includes(filterTerm) || header.headerData.toLowerCase().includes(filterTerm))
}
return filteredHeaders
})
Expand Down

0 comments on commit 2d87286

Please sign in to comment.