From 3bbbdc827cc3c8d7215954f56869f2ef26c3e0ac Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Wed, 25 Feb 2026 11:34:41 +0100 Subject: [PATCH] Fix drawer JavaScript timeout by setting explicit initial value Co-Authored-By: Claude Opus 4.6 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 994c9f0..7806f36 100644 --- a/main.py +++ b/main.py @@ -86,7 +86,7 @@ def index(): # ------------------------------------------------------------------ # Sidebar (rendered AFTER helpers are attached) # ------------------------------------------------------------------ - with ui.left_drawer().classes('q-pa-md').style('width: 350px'): + with ui.left_drawer(value=True).classes('q-pa-md').style('width: 350px'): render_sidebar(state) # ------------------------------------------------------------------