diff --git a/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.ts b/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.ts index 73b9edbadf3..e035bb1179c 100644 --- a/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.ts +++ b/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.ts @@ -95,7 +95,7 @@ export class NotebookAccessibilityProvider extends Disposable implements IListAc private createItemLabel(executionLabel: string, cellKind: CellKind) { return this.isReplHistory ? - `item${executionLabel}` : + `cell${executionLabel}` : `${cellKind === CellKind.Markup ? 'markdown' : 'code'} cell${executionLabel}`; }