File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/vs/workbench/contrib/notebook/browser Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2235,13 +2235,13 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
2235
2235
let position = '' ;
2236
2236
switch ( focusItem ) {
2237
2237
case 'editor' :
2238
- position = `the inner ${ cell . cellKind === CellKind . Markup ? 'markdown' : 'code' } editor is focused` + verboseLabel ? `, press escape to focus the cell container` : '' ;
2238
+ position = `the inner ${ cell . cellKind === CellKind . Markup ? 'markdown' : 'code' } editor is focused` + ( verboseLabel ? `, press escape to focus the cell container` : '' ) ;
2239
2239
break ;
2240
2240
case 'output' :
2241
- position = `the cell output is focused` + verboseLabel ? `, press escape to focus the cell container` : '' ;
2241
+ position = `the cell output is focused` + ( verboseLabel ? `, press escape to focus the cell container` : '' ) ;
2242
2242
break ;
2243
2243
case 'container' :
2244
- position = `the ${ cell . cellKind === CellKind . Markup ? 'markdown preview' : 'cell container' } is focused` + verboseLabel ? `, press enter to focus the inner ${ cell . cellKind === CellKind . Markup ? 'markdown' : 'code' } editor` : '' ;
2244
+ position = `the ${ cell . cellKind === CellKind . Markup ? 'markdown preview' : 'cell container' } is focused` + ( verboseLabel ? `, press enter to focus the inner ${ cell . cellKind === CellKind . Markup ? 'markdown' : 'code' } editor` : '' ) ;
2245
2245
break ;
2246
2246
default :
2247
2247
break ;
You can’t perform that action at this time.
0 commit comments