claude-home 1.5.35 → 1.5.36

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-home",
3
- "version": "1.5.35",
3
+ "version": "1.5.36",
4
4
  "description": "Web dashboard for Claude Code — browse sessions, manage skills, hooks, commands, and agents",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "files": [
10
10
  "bin/",
11
- "server.js",
11
+ "server.js",
12
12
  "public/",
13
13
  "marketplace.default.json",
14
14
  "README.md"
package/public/index.html CHANGED
@@ -4785,8 +4785,8 @@
4785
4785
 
4786
4786
  async resumeSession(sessionId, btnId, projectPath) {
4787
4787
  const cmd = projectPath
4788
- ? `cd "${projectPath}" && claude -r ${sessionId}`
4789
- : `claude -r ${sessionId}`;
4788
+ ? `cd "${projectPath}" && claude --resume ${sessionId} "continue"`
4789
+ : `claude --resume ${sessionId} "continue"`;
4790
4790
  const btn = document.getElementById(btnId);
4791
4791
  try {
4792
4792
  await navigator.clipboard.writeText(cmd);