mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
Order product picker list by name on the recipe edit page (references #520)
This commit is contained in:
parent
8d490351d0
commit
eaacca61c2
@ -95,7 +95,7 @@ class RecipesController extends BaseController
|
||||
'recipe' => $this->Database->recipes($recipeId),
|
||||
'recipePositions' => $this->Database->recipes_pos()->where('recipe_id', $recipeId),
|
||||
'mode' => 'edit',
|
||||
'products' => $this->Database->products(),
|
||||
'products' => $this->Database->products()->orderBy('name'),
|
||||
'quantityunits' => $this->Database->quantity_units(),
|
||||
'recipePositionsResolved' => $this->RecipesService->GetRecipesPosResolved(),
|
||||
'recipesResolved' => $this->RecipesService->GetRecipesResolved(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user