File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import greyDashboardSvgstr from '../style/icons/dashboard_icon_filled_grey.svg';
55import blueDashboardSvgstr from '../style/icons/dashboard_icon_filled_blue.svg' ;
66import whiteDashboardOutlineSvgstr from '../style/icons/dashboard_icon_outline_white.svg' ;
77import greyDashboardOutlineSvgstr from '../style/icons/dashboard_icon_outline_grey.svg' ;
8+ import tealDashboardSvgstr from '../style/icons/dashboard_icon_filled_teal.svg' ;
89import redoIcon from '../style/icons/redo.svg' ;
910import fullscreenIcon from '../style/icons/fullscreen.svg' ;
1011import statusIcon from '../style/icons/dummy.svg' ;
@@ -17,6 +18,11 @@ import resizer2Svgstr from '../style/icons/drag indicator lines.svg';
1718 * Dashboard icons
1819 */
1920export namespace DashboardIcons {
21+ export const tealDashboard = new LabIcon ( {
22+ name : 'pr-icons:teal-dashboard' ,
23+ svgstr : tealDashboardSvgstr
24+ } ) ;
25+
2026 export const whiteDashboard = new LabIcon ( {
2127 name : 'pr-icons:white-dashboard' ,
2228 svgstr : whiteDashboardSvgstr
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ const extension: JupyterFrontEndPlugin<IDashboardTracker> = {
8686 contentType : 'file' ,
8787 extensions : [ '.dashboard' , '.dash' ] ,
8888 fileFormat : 'text' ,
89- icon : DashboardIcons . blueDashboard ,
89+ icon : DashboardIcons . tealDashboard ,
9090 iconLabel : 'Dashboard' ,
9191 mimeTypes : [ 'application/json' ]
9292 } ;
@@ -550,7 +550,7 @@ function addCommands(
550550
551551 commands . addCommand ( CommandIDs . createNew , {
552552 label : 'Dashboard' ,
553- icon : DashboardIcons . blueDashboard ,
553+ icon : DashboardIcons . tealDashboard ,
554554 execute : async args => {
555555 // A new file is created and opened separately to override the default
556556 // opening behavior when there's a notebook and open the dashboard in a
You can’t perform that action at this time.
0 commit comments