@@ -38,7 +38,7 @@ import { KernelAPI, KernelSpecAPI } from '@jupyterlab/services';
3838import { authApi , iconDisplay } from './utils/utils' ;
3939import { dpmsWidget } from './dpms/dpmsWidget' ;
4040import dpmsIcon from '../style/icons/dpms_icon.svg' ;
41- import datasetExplorerIcon from '../style/icons/dataset_explorer_icon .svg' ;
41+ import catalogIcon from '../style/icons/catalog_icon_light .svg' ;
4242import { INotebookTracker , NotebookPanel } from '@jupyterlab/notebook' ;
4343import {
4444 PLUGIN_ID ,
@@ -52,7 +52,7 @@ import {
5252 IDefaultFileBrowser
5353} from '@jupyterlab/filebrowser' ;
5454import dpmsIconDark from '../style/icons/dpms_icon_dark.svg' ;
55- import datasetExplorerIconDark from '../style/icons/dataset_explorer_dark_icon .svg' ;
55+ import catalogIconDark from '../style/icons/catalog_icon_dark .svg' ;
5656import { NotebookButtonExtension } from './controls/NotebookButtonExtension' ;
5757import { ISettingRegistry } from '@jupyterlab/settingregistry' ;
5858import { IDocumentManager } from '@jupyterlab/docmanager' ;
@@ -71,9 +71,9 @@ const iconDpms = new LabIcon({
7171 name : 'launcher:dpms-icon' ,
7272 svgstr : dpmsIcon
7373} ) ;
74- const iconDatasetExplorer = new LabIcon ( {
74+ const iconCatalog = new LabIcon ( {
7575 name : 'launcher:dataset-explorer-icon' ,
76- svgstr : datasetExplorerIcon
76+ svgstr : catalogIcon
7777} ) ;
7878const iconPythonLogo = new LabIcon ( {
7979 name : 'launcher:python-bigquery-logo-icon' ,
@@ -129,9 +129,9 @@ const extension: JupyterFrontEndPlugin<void> = {
129129 name : 'launcher:dpms-icon-dark' ,
130130 svgstr : dpmsIconDark
131131 } ) ;
132- const iconDatasetExplorerDark = new LabIcon ( {
132+ const iconCatalogDark = new LabIcon ( {
133133 name : 'launcher:dataset-explorer-icon-dark' ,
134- svgstr : datasetExplorerIconDark
134+ svgstr : catalogIconDark
135135 } ) ;
136136 window . addEventListener ( 'beforeunload' , ( ) => {
137137 localStorage . removeItem ( 'notebookValue' ) ;
@@ -246,14 +246,14 @@ const extension: JupyterFrontEndPlugin<void> = {
246246 panelDpms . title . icon = iconDpms ;
247247 }
248248 if ( bqFeature . enable_bigquery_integration && panelCatalog ) {
249- panelCatalog . title . icon = iconDatasetExplorer ;
249+ panelCatalog . title . icon = iconCatalog ;
250250 }
251251 } else {
252252 if ( bqFeature . enable_metastore_integration && panelDpms ) {
253253 panelDpms . title . icon = iconDpmsDark ;
254254 }
255255 if ( bqFeature . enable_bigquery_integration && panelCatalog ) {
256- panelCatalog . title . icon = iconDatasetExplorerDark ;
256+ panelCatalog . title . icon = iconCatalogDark ;
257257 }
258258 }
259259 } ;
0 commit comments