From eaa6d7e55549cbd21eff788102962d4dbc024cd9 Mon Sep 17 00:00:00 2001 From: Aaron Munger Date: Fri, 15 Nov 2024 12:35:58 -0800 Subject: [PATCH] label the execution item a cell (#233944) --- .../contrib/notebook/browser/notebookAccessibilityProvider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}`; }