From b7c9bccd4343c807a8f7eb41f4b55cd57c7822c1 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Tue, 26 May 2026 10:09:32 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/view_page.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docker/routlin-dash/app/view_page.py b/docker/routlin-dash/app/view_page.py index 37360a5..8322f52 100644 --- a/docker/routlin-dash/app/view_page.py +++ b/docker/routlin-dash/app/view_page.py @@ -2686,7 +2686,12 @@ function startApplyPoller(uuid, bar, mine) { el.textContent = 'Fix is being applied now...'; }, onComplete: function() { - if (bar) bar.classList.remove('info-bar-running'); + if (bar) { + bar.classList.remove('info-bar-running'); + bar.style.animation = 'none'; + bar.offsetHeight; + bar.style.animation = ''; + } el.textContent = 'Fix has been applied.'; setTimeout(function() { window.location.reload(); }, 2500); }