claude-remote-cli 1.4.2 → 1.4.3
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/public/app.js +4 -3
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -556,11 +556,12 @@
|
|
|
556
556
|
|
|
557
557
|
ctxResumeYolo.addEventListener('click', function (e) {
|
|
558
558
|
e.stopPropagation();
|
|
559
|
+
var target = contextMenuTarget;
|
|
559
560
|
hideContextMenu();
|
|
560
|
-
if (!
|
|
561
|
+
if (!target) return;
|
|
561
562
|
startSession(
|
|
562
|
-
|
|
563
|
-
|
|
563
|
+
target.repoPath,
|
|
564
|
+
target.worktreePath,
|
|
564
565
|
['--dangerously-skip-permissions']
|
|
565
566
|
);
|
|
566
567
|
});
|