diff --git a/src/app/modules/colors/pages/list/list.component.ts b/src/app/modules/colors/pages/list/list.component.ts index 84d98ac..21c3670 100644 --- a/src/app/modules/colors/pages/list/list.component.ts +++ b/src/app/modules/colors/pages/list/list.component.ts @@ -65,7 +65,8 @@ export class ListComponent extends ErrorHandlingComponent { } private recipeMatchesSearchQuery(recipe: Recipe) { - const matches = this.searchString(recipe.name) || + const matches = this.searchString(recipe.company.name) || + this.searchString(recipe.name) || this.searchString(recipe.description) || (recipe.sample && this.searchString(recipe.sample.toString())) this.hiddenRecipes[recipe.id] = !matches