We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 425475b commit 00858baCopy full SHA for 00858ba
src/Frontend/src/components/messages/HeadersView.vue
@@ -16,7 +16,7 @@ const filteredHeaders = computed(() => {
16
if (!searchTerm.value) {
17
return props.message.headers;
18
}
19
- return props.message.headers.filter((header) => header.key.toLowerCase().includes(searchTerm.value.toLowerCase()));
+ return props.message.headers.filter((header) => header.key.toLowerCase().includes(searchTerm.value.toLowerCase()) || header.value?.toLowerCase().includes(searchTerm.value.toLowerCase()));
20
});
21
function clearSearch() {
22
searchTerm.value = ""; // Clears the search term
0 commit comments