diff --git a/frontend/app/components/Domain/Recipe/RecipeDataTable.vue b/frontend/app/components/Domain/Recipe/RecipeDataTable.vue
index ea39b64d6..2e9478718 100644
--- a/frontend/app/components/Domain/Recipe/RecipeDataTable.vue
+++ b/frontend/app/components/Domain/Recipe/RecipeDataTable.vue
@@ -9,6 +9,7 @@
:items-per-page="15"
class="elevation-0"
:loading="loading"
+ :search="search"
return-object
>
@@ -86,6 +87,7 @@ interface Props {
loading?: boolean;
recipes?: Recipe[];
showHeaders?: ShowHeaders;
+ search?: string;
}
const props = withDefaults(defineProps