Skip to content

Commit 0379456

Browse files
committed
update command and icon IDs
1 parent 9dc2e2e commit 0379456

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/icons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import driveSvgstr from '../style/drive.svg';
33
import driveBrowserSvg from '../style/driveIconFileBrowser.svg';
44

55
export const DriveIcon = new LabIcon({
6-
name: 'jupyter-drives:drive',
6+
name: '@jupyter/drives:drive',
77
svgstr: driveSvgstr
88
});
99

1010
export const driveBrowserIcon = new LabIcon({
11-
name: 'jupyter-drives:drive-browser',
11+
name: '@jupyter/drives:drive-browser',
1212
svgstr: driveBrowserSvg
1313
});

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import { DriveIcon, driveBrowserIcon } from './icons';
1919
* The command IDs used by the driveBrowser plugin.
2020
*/
2121
namespace CommandIDs {
22-
export const openDrivesDialog = 'jupyter-drives:open-drives-dialog';
23-
export const openPath = 'jupyter-drives:open-path';
24-
export const toggleBrowser = 'jupyter-drives:toggle-main';
22+
export const openDrivesDialog = 'drives:open-drives-dialog';
23+
export const openPath = 'drives:open-path';
24+
export const toggleBrowser = 'drives:toggle-main';
2525
}
2626

2727
/**
@@ -144,7 +144,7 @@ const openDriveDialogPlugin: JupyterFrontEndPlugin<void> = {
144144
* The drive file browser factory provider.
145145
*/
146146
const driveFileBrowser: JupyterFrontEndPlugin<void> = {
147-
id: 'jupyter-drives:drive-file-browser',
147+
id: '@jupyter/drives:drives-file-browser',
148148
description: 'The drive file browser factory provider.',
149149
autoStart: true,
150150
requires: [IFileBrowserFactory],

0 commit comments

Comments
 (0)