@tenonhq/dovetail-dashboard 0.0.23 → 0.0.24
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/claude-plans.js +2 -2
package/package.json
CHANGED
package/public/claude-plans.js
CHANGED
|
@@ -545,9 +545,9 @@
|
|
|
545
545
|
resumeBtn.id = "cp-resume-btn";
|
|
546
546
|
resumeBtn.className = "cp-resume-btn";
|
|
547
547
|
resumeBtn.textContent = "Resume";
|
|
548
|
-
resumeBtn.title = "Copy /resume command to clipboard";
|
|
548
|
+
resumeBtn.title = "Copy /resume-claude-plans command to clipboard";
|
|
549
549
|
resumeBtn.addEventListener("click", function () {
|
|
550
|
-
var cmd = "/resume " + plan.slug;
|
|
550
|
+
var cmd = "/resume-claude-plans " + plan.slug;
|
|
551
551
|
var finish = function () { showToast("Copied! Paste into Claude."); };
|
|
552
552
|
if (navigator.clipboard && navigator.clipboard.writeText) {
|
|
553
553
|
navigator.clipboard.writeText(cmd).then(finish).catch(function () {
|