Development

This commit is contained in:
Matthew Grotke 2026-05-26 10:09:32 -04:00
parent ddee2c2389
commit b7c9bccd43

View file

@ -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);
}