File tree 1 file changed +7
-2
lines changed
packages/tree-extension/src
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ import { ITranslator } from '@jupyterlab/translation';
27
27
import {
28
28
caretDownIcon ,
29
29
folderIcon ,
30
- runningIcon
30
+ runningIcon ,
31
+ TabBarSvg
31
32
} from '@jupyterlab/ui-components' ;
32
33
33
34
import { Menu , MenuBar , TabPanel } from '@lumino/widgets' ;
@@ -113,7 +114,11 @@ const browserWidget: JupyterFrontEndPlugin<void> = {
113
114
toolbarRegistry : IToolbarWidgetRegistry ,
114
115
manager : IRunningSessionManagers | null
115
116
) : void => {
116
- const tabPanel = new TabPanel ( { tabPlacement : 'top' , tabsMovable : true } ) ;
117
+ const tabPanel = new TabPanel ( {
118
+ tabPlacement : 'top' ,
119
+ tabsMovable : true ,
120
+ renderer : TabBarSvg . defaultRenderer
121
+ } ) ;
117
122
tabPanel . addClass ( 'jp-TreePanel' ) ;
118
123
119
124
const trans = translator . load ( 'notebook' ) ;
You can’t perform that action at this time.
0 commit comments