From daa1b2a56feb247231532b7f9c9b14f24481ff67 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Tue, 26 May 2026 02:13:48 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/view_page.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/routlin-dash/app/view_page.py b/docker/routlin-dash/app/view_page.py index 09be4e1..07d9b6d 100644 --- a/docker/routlin-dash/app/view_page.py +++ b/docker/routlin-dash/app/view_page.py @@ -2631,14 +2631,14 @@ function startApplyPoller(uuid, bar, mine) { onPending: function(nextIn) { bar.classList.remove('info-bar-running'); bar.innerHTML = nextIn === null - ? (mine ? 'Configuration saved. The processing service is not running.' + ? (mine ? 'Your changes are pending. The processing service is not running.' : esc(user()) + ' has pending changes. The processing service is not running.') - : (mine ? 'Configuration saved. Your changes will be applied ' + timingPhrase(nextIn) + '.' + : (mine ? 'Your changes will be applied ' + timingPhrase(nextIn) + '.' : esc(user()) + ' has pending changes which will be applied ' + timingPhrase(nextIn) + '.'); }, onRunning: function() { bar.classList.add('info-bar-running'); - bar.innerHTML = mine ? 'Configuration saved. Your changes are being applied now...' + bar.innerHTML = mine ? 'Your changes are being applied now...' : esc(user()) + '\'s changes are being applied now...'; }, onComplete: function() {