Skip to content

Commit

Permalink
fix(web): Include the category in the Asset Search
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 committed Jul 8, 2024
1 parent 40b82db commit e4ea61e
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 e4ea61e

Please sign in to comment.