claude-code-watch 0.1.0 → 0.1.1

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": "claude-code-watch",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Web-based real-time monitor for Claude Code.",
5
5
  "main": "./src/server/server.js",
6
6
  "bin": {
package/public/index.html CHANGED
@@ -1424,7 +1424,7 @@ function showSessionIdTip(el) {
1424
1424
  tip.className = 'session-id-tip';
1425
1425
  tip.style.top = (rect.bottom + 4) + 'px';
1426
1426
  tip.style.left = rect.left + 'px';
1427
- tip.innerHTML = `<code>${esc(sid)}</code><button class="tip-copy-btn" onclick="event.stopPropagation();copySessionId(this)">Copy</button>`;
1427
+ tip.innerHTML = `<button class="tip-copy-btn" onclick="event.stopPropagation();copySessionId(this)">Copy</button><code>${esc(sid)}</code>`;
1428
1428
  tip.onmouseenter = () => clearTimeout(sessionIdTipTimer);
1429
1429
  tip.onmouseleave = () => { hideAllSessionIdTips(); };
1430
1430
  document.body.appendChild(tip);