[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-06-18 19:56:51 +00:00
committed by GitHub
parent 2d79e19284
commit 477fd032f2

View File

@ -73,7 +73,13 @@ export function SpanNode({
}}
tabIndex={-1}
aria-hidden={!hasChildren}
aria-label={hasChildren ? (isExpanded ? t("trace.collapseSpan") : t("trace.expandSpan")) : undefined}
aria-label={
hasChildren
? isExpanded
? t("trace.collapseSpan")
: t("trace.expandSpan")
: undefined
}
>
<IconComponent
name={isExpanded ? "ChevronDown" : "ChevronRight"}