Skip to content

Commit

Permalink
chore: jupyterlab label
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Dec 16, 2023
1 parent b84921d commit 3242a24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/jupyterlab/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ const plugin: JupyterFrontEndPlugin<void> = {
});
}
commands.addCommand(command, {
caption: 'Show Manager',
label: 'Manager',
caption: 'Show Jupyter Manager',
label: 'Jupyter Manager',
icon,
execute: () => {
const content = new ManagerWidget();
const widget = new MainAreaWidget<ManagerWidget>({ content });
widget.title.label = 'Manager';
widget.title.label = 'Jupyter Manager';
widget.title.icon = icon;
app.shell.add(widget, 'main');
tracker.add(widget);
Expand Down

0 comments on commit 3242a24

Please sign in to comment.