git-watchtower 2.3.3 → 2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/server/web-ui/js.js +2 -2
package/package.json
CHANGED
package/src/server/web-ui/js.js
CHANGED
|
@@ -300,7 +300,7 @@ function getDashboardJs() {
|
|
|
300
300
|
const dot = document.getElementById('connection-dot');
|
|
301
301
|
const badge = document.getElementById('status-badge');
|
|
302
302
|
if (ui.connected) {
|
|
303
|
-
dot.className = 'connection-dot
|
|
303
|
+
dot.className = 'connection-dot connected';
|
|
304
304
|
badge.className = 'badge badge-online';
|
|
305
305
|
badge.textContent = 'live';
|
|
306
306
|
} else {
|
|
@@ -1107,7 +1107,7 @@ ${pureFnBlock}
|
|
|
1107
1107
|
// ── Branch Cleanup ─────────────────────────────────────────────
|
|
1108
1108
|
function showCleanup() {
|
|
1109
1109
|
ui.cleanupMode = true;
|
|
1110
|
-
|
|
1110
|
+
let html = '<div style="color:var(--text-dim);font-size:13px;margin-bottom:12px;">Scanning for branches with deleted remotes...</div>';
|
|
1111
1111
|
document.getElementById('cleanup-content').innerHTML = html;
|
|
1112
1112
|
cleanupModal.show();
|
|
1113
1113
|
|