Skip to content

Commit

Permalink
feat: Add Ingredients to Recipe Query Filter options (#4534)
Browse files Browse the repository at this point in the history
Co-authored-by: alexxxxxxxandria <[email protected]>
Co-authored-by: Michael Genson <[email protected]>
  • Loading branch information
3 people authored Nov 11, 2024
1 parent ea4adfa commit 7ada42a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/components/Domain/Cookbook/CookbookEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ export default defineComponent({
label: i18n.tc("tag.tags"),
type: Organizer.Tag,
},
{
name: "recipe_ingredient.food.id",
label: i18n.tc("recipe.ingredients"),
type: Organizer.Food,
},
{
name: "tools.id",
label: i18n.tc("tool.tools"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ export default defineComponent({
label: i18n.tc("tag.tags"),
type: Organizer.Tag,
},
{
name: "recipe_ingredient.food.id",
label: i18n.tc("recipe.ingredients"),
type: Organizer.Food,
},
{
name: "tools.id",
label: i18n.tc("tool.tools"),
Expand Down

0 comments on commit 7ada42a

Please sign in to comment.