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()