We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e84265 commit 79b2be8Copy full SHA for 79b2be8
packages/jupyter-ai/src/index.ts
@@ -89,10 +89,11 @@ const plugin: JupyterFrontEndPlugin<void> = {
89
}
90
aiSettings.id = 'jupyter-ai-settings';
91
aiSettings.title.label = 'AI settings';
92
+ aiSettings.title.caption = 'AI settings';
93
aiSettings.title.closable = true;
94
95
if (!aiSettings.isAttached) {
- app?.shell.add(aiSettings, notebookShell ? 'left' : 'main');
96
+ app?.shell.add(aiSettings, notebookShell ? 'right' : 'main');
97
98
app.shell.activateById(aiSettings.id);
99
},
0 commit comments