Handle aria attributes

This commit is contained in:
momo5502
2025-09-07 11:08:03 +02:00
parent 0923d8efa6
commit eed230a844
3 changed files with 8 additions and 7 deletions

View File

@@ -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>
);