jupyterlab_claude_code_extension 1.0.34 → 1.0.37
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 +0 -6
- package/package.json +1 -1
- package/src/widget.ts +0 -7
package/lib/widget.js
CHANGED
|
@@ -635,12 +635,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
635
635
|
if (s.remote_control) {
|
|
636
636
|
lines.push('Remote control: active');
|
|
637
637
|
}
|
|
638
|
-
if (s.first_prompt) {
|
|
639
|
-
const trimmed = s.first_prompt.length > 100
|
|
640
|
-
? `${s.first_prompt.slice(0, 100)}...`
|
|
641
|
-
: s.first_prompt;
|
|
642
|
-
lines.push(`First prompt: ${trimmed}`);
|
|
643
|
-
}
|
|
644
638
|
if (s.session_id) {
|
|
645
639
|
lines.push(`Session id: ${s.session_id}`);
|
|
646
640
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jupyterlab_claude_code_extension",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
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
|
@@ -748,13 +748,6 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
748
748
|
if (s.remote_control) {
|
|
749
749
|
lines.push('Remote control: active');
|
|
750
750
|
}
|
|
751
|
-
if (s.first_prompt) {
|
|
752
|
-
const trimmed =
|
|
753
|
-
s.first_prompt.length > 100
|
|
754
|
-
? `${s.first_prompt.slice(0, 100)}...`
|
|
755
|
-
: s.first_prompt;
|
|
756
|
-
lines.push(`First prompt: ${trimmed}`);
|
|
757
|
-
}
|
|
758
751
|
if (s.session_id) {
|
|
759
752
|
lines.push(`Session id: ${s.session_id}`);
|
|
760
753
|
}
|