claude-remote-cli 1.4.1 → 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 +8 -5
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -556,20 +556,23 @@
|
|
|
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
|
});
|
|
567
568
|
|
|
568
569
|
ctxDeleteWorktree.addEventListener('click', function (e) {
|
|
569
570
|
e.stopPropagation();
|
|
571
|
+
var target = contextMenuTarget;
|
|
570
572
|
hideContextMenu();
|
|
571
|
-
if (!
|
|
572
|
-
|
|
573
|
+
if (!target) return;
|
|
574
|
+
contextMenuTarget = target;
|
|
575
|
+
deleteWtName.textContent = target.name;
|
|
573
576
|
deleteWtDialog.showModal();
|
|
574
577
|
});
|
|
575
578
|
|