Skip to content

Commit

Permalink
Merge pull request #4113 from systeminit/fix-web-Include-the-category…
Browse files Browse the repository at this point in the history
…-in-the-Asset-Search

fix(web): Include the category in the Asset Search
  • Loading branch information
stack72 authored Jul 8, 2024
2 parents 40b82db + e4ea61e commit 4804504
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/web/src/components/AssetListPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ const categorizedAssets = computed(() =>
if (include && searchString.value.length) {
include = !!(
asset.schemaName.toLocaleLowerCase().includes(searchString.value) ||
asset.displayName?.toLocaleLowerCase().includes(searchString.value)
asset.displayName?.toLocaleLowerCase().includes(searchString.value) ||
asset.category?.toLocaleLowerCase().includes(searchString.value)
);
}
Expand Down

0 comments on commit 4804504

Please sign in to comment.