mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 09:35:37 -05:00
Escape the aria string for Edit Data grid (#1958)
This commit is contained in:
@@ -198,7 +198,7 @@ export class EditDataComponent extends GridParentComponent implements OnInit, On
|
||||
rowIndex++;
|
||||
return {
|
||||
values: row.cells.map(c => {
|
||||
return mixin({ ariaLabel: c.displayValue }, c);
|
||||
return mixin({ ariaLabel: escape(c.displayValue) }, c);
|
||||
}), row: row.id
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user