From 59c360c3c33a55447f08e95fed4714959300850c Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 27 Jan 2026 07:02:33 -1000 Subject: Fix z-index, conditions auth, and meal combining (#62, #63, #64) Bug fixes: - #62: Increase FAB button z-index from z-40 to z-50 - #63: Combine multiple meals per date+mealType in Meals tab - #64: Make /conditions route public (no auth required) Changes: - FAB button now z-50 (same as modals, appears on top when scrolling) - Meals tab groups meals by date+mealType, joins recipe names with " + " - Conditions page moved outside protected routes group DESIGN.md updates: - Updated z-index hierarchy table - Added Meals View section - Noted conditions page is public Co-Authored-By: Claude Opus 4.5 --- web/templates/partials/plantoeat-meals.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/templates/partials') diff --git a/web/templates/partials/plantoeat-meals.html b/web/templates/partials/plantoeat-meals.html index 1f016ef..f05c98c 100644 --- a/web/templates/partials/plantoeat-meals.html +++ b/web/templates/partials/plantoeat-meals.html @@ -10,7 +10,7 @@
{{range .Meals}}
-

{{.RecipeName}}

+

{{range $i, $name := .RecipeNames}}{{if $i}} + {{end}}{{$name}}{{end}}

{{.Date.Format "Mon, Jan 2"}} -- cgit v1.2.3