@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tenonhq/dovetail-dashboard",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Update Set Dashboard for Dovetail",
5
5
  "main": "server.js",
6
6
  "scripts": {
@@ -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 () {