Skip to content

Commit 79b2be8

Browse files
authored
Show the AI settings in the right area with Jupyter Notebook (#1470)
1 parent 1e84265 commit 79b2be8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/jupyter-ai/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,11 @@ const plugin: JupyterFrontEndPlugin<void> = {
8989
}
9090
aiSettings.id = 'jupyter-ai-settings';
9191
aiSettings.title.label = 'AI settings';
92+
aiSettings.title.caption = 'AI settings';
9293
aiSettings.title.closable = true;
9394
}
9495
if (!aiSettings.isAttached) {
95-
app?.shell.add(aiSettings, notebookShell ? 'left' : 'main');
96+
app?.shell.add(aiSettings, notebookShell ? 'right' : 'main');
9697
}
9798
app.shell.activateById(aiSettings.id);
9899
},

0 commit comments

Comments
 (0)