git-watchtower 2.3.4 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-watchtower",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Terminal-based Git branch monitor with activity sparklines and optional dev server with live reload",
5
5
  "main": "bin/git-watchtower.js",
6
6
  "bin": {
@@ -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 ui.connected';
303
+ dot.className = 'connection-dot connected';
304
304
  badge.className = 'badge badge-online';
305
305
  badge.textContent = 'live';
306
306
  } else {