summaryrefslogtreecommitdiff
path: root/web/static
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-01-25 17:11:00 -1000
committerPeter Stone <thepeterstone@gmail.com>2026-01-25 17:11:00 -1000
commit6518a7ed5ee8800741351166a724da53cb2f271e (patch)
tree66777e6c3fcccca3d0d34769efc4522359e19fc9 /web/static
parentdedda31d064ddcb4f857f2db851c5a8c1e19deba (diff)
Fix UI bugs #44, #45, #46
- #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 <noreply@anthropic.com>
Diffstat (limited to 'web/static')
-rw-r--r--web/static/js/app.js2
1 files changed, 1 insertions, 1 deletions
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;