jupyterlab_claude_code_extension 1.0.37 → 1.0.39
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/src/widget.ts +4 -1
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.39",
|
|
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
|
@@ -669,7 +669,10 @@ export class ClaudeCodeSessionsWidget extends Widget {
|
|
|
669
669
|
this._bodyEl.appendChild(section);
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
-
private _renderRow(
|
|
672
|
+
private _renderRow(
|
|
673
|
+
session: ISession,
|
|
674
|
+
sectionKey: SectionKey
|
|
675
|
+
): HTMLDivElement {
|
|
673
676
|
const row = document.createElement('div');
|
|
674
677
|
row.className = 'jp-ClaudeSessionsPanel-row';
|
|
675
678
|
row.title = this._buildRowTooltip(session);
|