jupyterlab_claude_code_extension 1.1.12 → 1.1.13

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/lib/widget.js CHANGED
@@ -468,7 +468,7 @@ export class ClaudeCodeSessionsWidget extends Widget {
468
468
  const dialog = new Dialog({
469
469
  title: 'Opening Claude Code session',
470
470
  body,
471
- buttons: [Dialog.cancelButton({ label: 'Run in background' })]
471
+ buttons: []
472
472
  });
473
473
  // launch() returns a Promise we don't await - we resolve programmatically
474
474
  // when the spawn completes (or errors).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_claude_code_extension",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Browse, resume, and manage your Claude Code CLI sessions from a JupyterLab side panel. One click reactivates the right terminal - no duplicate tabs, live remote-control indicator, and favourites for the projects you keep coming back to.",
5
5
  "keywords": [
6
6
  "jupyter",
package/src/widget.ts CHANGED
@@ -564,7 +564,7 @@ export class ClaudeCodeSessionsWidget extends Widget {
564
564
  const dialog = new Dialog<unknown>({
565
565
  title: 'Opening Claude Code session',
566
566
  body,
567
- buttons: [Dialog.cancelButton({ label: 'Run in background' })]
567
+ buttons: []
568
568
  });
569
569
  // launch() returns a Promise we don't await - we resolve programmatically
570
570
  // when the spawn completes (or errors).