From 20c2d865d27ba422c969db402dfc48038efde7f6 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Tue, 26 May 2026 02:46:47 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/view_page.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/routlin-dash/app/view_page.py b/docker/routlin-dash/app/view_page.py index a9cf729..9aba857 100644 --- a/docker/routlin-dash/app/view_page.py +++ b/docker/routlin-dash/app/view_page.py @@ -1653,7 +1653,7 @@ def render_layout(view_id, content_html, tokens): existing_interfaces = tokens.get('EXISTING_VLAN_INTERFACES_JSON', '[]') current_user = session.get('email_address', '') pending = get_pending_entries() - my_uuid = next((u for u, t, c, usr in pending if usr == current_user), None) + my_uuid = next((u for u, t, c, usr in pending if usr == current_user and c != 'fix problems'), None) secs = _seconds_until_next_run() locked = _is_locked()