@@ -49,7 +49,7 @@ const FILE_BROWSER_FACTORY = 'DriveBrowser';
4949const FILTERBOX_CLASS = 'jp-drive-browser-search-box' ;
5050
5151const openDriveDialogPlugin : JupyterFrontEndPlugin < void > = {
52- id : '@ jupyter/ drives:widget' ,
52+ id : 'jupyter- drives:widget' ,
5353 description : 'Open a dialog to select drives to be added in the filebrowser.' ,
5454 requires : [ IFileBrowserFactory , ITranslator ] ,
5555 autoStart : true ,
@@ -156,7 +156,7 @@ const openDriveDialogPlugin: JupyterFrontEndPlugin<void> = {
156156 * The drives list provider.
157157 */
158158const drivesListProvider : JupyterFrontEndPlugin < IDriveInfo [ ] > = {
159- id : '@ jupyter/ drives:drives-list' ,
159+ id : 'jupyter- drives:drives-list' ,
160160 description : 'The drives list provider.' ,
161161 provides : IDrivesList ,
162162 activate : async ( _ : JupyterFrontEnd ) : Promise < IDriveInfo [ ] > => {
@@ -183,7 +183,7 @@ const drivesListProvider: JupyterFrontEndPlugin<IDriveInfo[]> = {
183183 * The drive file browser factory provider.
184184 */
185185const driveFileBrowser : JupyterFrontEndPlugin < void > = {
186- id : '@ jupyter/ drives:drives-file-browser' ,
186+ id : 'jupyter- drives:drives-file-browser' ,
187187 description : 'The drive file browser factory provider.' ,
188188 autoStart : true ,
189189 requires : [
@@ -212,7 +212,7 @@ const driveFileBrowser: JupyterFrontEndPlugin<void> = {
212212 restorer : ILayoutRestorer | null
213213 ) : Promise < void > => {
214214 console . log (
215- 'JupyterLab extension @ jupyter/ drives:drives-file-browser is activated!'
215+ 'JupyterLab extension jupyter- drives:drives-file-browser is activated!'
216216 ) ;
217217 const { commands } = app ;
218218
0 commit comments