mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-28 07:21:02 +00:00
Handle aria attributes
This commit is contained in:
@@ -160,8 +160,9 @@ class OutputGrouper {
|
||||
}
|
||||
|
||||
function LogLineRow({
|
||||
index,
|
||||
ariaAttributes,
|
||||
lines,
|
||||
index,
|
||||
style,
|
||||
}: RowComponentProps<{
|
||||
lines: LogLine[];
|
||||
@@ -169,7 +170,7 @@ function LogLineRow({
|
||||
{
|
||||
const line = lines[index];
|
||||
return (
|
||||
<span className={line.classNames} style={style}>
|
||||
<span className={line.classNames} style={style} {...ariaAttributes}>
|
||||
{line.text}
|
||||
</span>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user