Skip to content

Commit 6996e99

Browse files
committed
update command icons
1 parent e6f9bf8 commit 6996e99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plugins/driveBrowserPlugin.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { PageConfig, PathExt } from '@jupyterlab/coreutils';
3333
import { CommandRegistry } from '@lumino/commands';
3434
import { Widget } from '@lumino/widgets';
3535

36-
import { driveBrowserIcon } from '../icons';
36+
import { addIcon, driveBrowserIcon, removeIcon } from '../icons';
3737
import { Drive } from '../contents';
3838
import { setListingLimit } from '../requests';
3939
import { CommandIDs } from '../token';
@@ -561,7 +561,7 @@ namespace Private {
561561
drive.excludeDrive(driveName);
562562
},
563563
label: 'Exclude Drive',
564-
icon: driveBrowserIcon.bindprops({ stylesheet: 'menuItem' })
564+
icon: removeIcon.bindprops({ stylesheet: 'menuItem' })
565565
});
566566

567567
app.contextMenu.addItem({
@@ -594,7 +594,7 @@ namespace Private {
594594
});
595595
},
596596
label: 'Include Drive',
597-
icon: driveBrowserIcon.bindprops({ stylesheet: 'menuItem' })
597+
icon: addIcon.bindprops({ stylesheet: 'menuItem' })
598598
});
599599

600600
app.contextMenu.addItem({

0 commit comments

Comments
 (0)