File tree Expand file tree Collapse file tree 3 files changed +2
-66
lines changed Expand file tree Collapse file tree 3 files changed +2
-66
lines changed Original file line number Diff line number Diff line change 11import { LabIcon } from '@jupyterlab/ui-components' ;
2- import driveSvgstr from '../style/drive.svg' ;
32import driveBrowserSvg from '../style/driveIconFileBrowser.svg' ;
43
5- export const DriveIcon = new LabIcon ( {
6- name : 'jupyter-drives:drive' ,
7- svgstr : driveSvgstr
8- } ) ;
9-
104export const driveBrowserIcon = new LabIcon ( {
115 name : 'jupyter-drives:drive-browser' ,
126 svgstr : driveBrowserSvg
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { addJupyterLabThemeChangeListener } from '@jupyter/web-components';
88import { Dialog , showDialog } from '@jupyterlab/apputils' ;
99
1010import { DriveListModel , DriveListView , IDrive } from './drivelistmanager' ;
11- import { DriveIcon } from '../icons' ;
11+ import { driveBrowserIcon } from '../icons' ;
1212import { CommandIDs } from '../token' ;
1313
1414export const openDriveDialogPlugin : JupyterFrontEndPlugin < void > = {
@@ -108,7 +108,7 @@ export const openDriveDialogPlugin: JupyterFrontEndPlugin<void> = {
108108 }
109109 } ,
110110
111- icon : DriveIcon . bindprops ( { stylesheet : 'menuItem' } ) ,
111+ icon : driveBrowserIcon . bindprops ( { stylesheet : 'menuItem' } ) ,
112112 caption : trans . __ ( 'Add drives to filebrowser.' ) ,
113113 label : trans . __ ( 'Add Drives To Filebrowser' )
114114 } ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments