From 1dd6f210662d8c04b4d47e75be0d4fc1831cca03 Mon Sep 17 00:00:00 2001 From: 9Lukas5 Date: Sun, 25 Jan 2026 15:50:14 +0100 Subject: [PATCH] feat(views/recipes): if ignore stock put all ingredients to the list ref https://github.com/grocy/grocy/issues/68 ref https://github.com/grocy/grocy/issues/6866 --- views/recipes.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/recipes.blade.php b/views/recipes.blade.php index bb5e8953..854a6f06 100644 --- a/views/recipes.blade.php +++ b/views/recipes.blade.php @@ -581,7 +581,7 @@
@foreach($recipePositionsResolved as $recipePos) - @if(in_array($recipePos->recipe_id, $includedRecipeIdsAbsolute) && $recipePos->missing_amount > 0) + @if(in_array($recipePos->recipe_id, $includedRecipeIdsAbsolute) && $userSettings['recipes_ignore_stock_on_add_to_cart_checkbox'] || $recipePos->missing_amount > 0)