Development

This commit is contained in:
Matthew Grotke 2026-05-26 02:13:48 -04:00
parent 7eae567e6c
commit daa1b2a56f

View file

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