mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -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++;
|
rowIndex++;
|
||||||
return {
|
return {
|
||||||
values: row.cells.map(c => {
|
values: row.cells.map(c => {
|
||||||
return mixin({ ariaLabel: c.displayValue }, c);
|
return mixin({ ariaLabel: escape(c.displayValue) }, c);
|
||||||
}), row: row.id
|
}), row: row.id
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user