label the execution item a cell (#233944)

This commit is contained in:
Aaron Munger
2024-11-15 12:35:58 -08:00
committed by GitHub
parent bf2e6e978d
commit eaa6d7e555
@@ -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}`;
}