mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 15:01:57 +01:00
Fix #52562, Process Explorer: NVDA reads the whole table dimension every time before reading each cell value
This commit is contained in:
@@ -152,7 +152,8 @@ function updateProcessInfo(processList): void {
|
||||
pid.classList.add('centered');
|
||||
pid.textContent = p.pid;
|
||||
|
||||
const name = document.createElement('td');
|
||||
const name = document.createElement('th');
|
||||
name.scope = 'row';
|
||||
name.classList.add('data');
|
||||
name.title = p.cmd;
|
||||
name.textContent = p.formattedName;
|
||||
|
||||
Reference in New Issue
Block a user