Skip to content

Commit 1ce7ada

Browse files
committed
fix ? operator
1 parent 77e463c commit 1ce7ada

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2235,13 +2235,13 @@ export class NotebookEditorWidget extends Disposable implements INotebookEditorD
22352235
let position = '';
22362236
switch (focusItem) {
22372237
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` : '');
22392239
break;
22402240
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` : '');
22422242
break;
22432243
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` : '');
22452245
break;
22462246
default:
22472247
break;

0 commit comments

Comments
 (0)