From 6518a7ed5ee8800741351166a724da53cb2f271e Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sun, 25 Jan 2026 17:11:00 -1000 Subject: Fix UI bugs #44, #45, #46 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - #44: Replace oversized SVG arrow with simple ▾ character for Details dropdown - #45: Change Conditions from external link to normal tab button (fixes back button) - #46: Use dark medium-opacity background (black/50%) for atoms instead of white/5% Co-Authored-By: Claude Opus 4.5 --- web/static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/static/js') diff --git a/web/static/js/app.js b/web/static/js/app.js index 6646400..f103ae8 100644 --- a/web/static/js/app.js +++ b/web/static/js/app.js @@ -215,7 +215,7 @@ function toggleTask(taskId) { const SWIPE_THRESHOLD = 50; // Minimum px for a swipe // Get ordered list of tab names (main tabs only for swipe) - const TAB_ORDER = ['timeline', 'shopping', 'tasks', 'planning', 'meals']; + const TAB_ORDER = ['timeline', 'shopping', 'conditions', 'tasks', 'planning', 'meals']; function handleSwipe() { const swipeDistance = touchEndX - touchStartX; -- cgit v1.2.3