mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-23 17:58:35 +08:00
[autofix.ci] apply automated fixes
This commit is contained in:
@ -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"}
|
||||
|
||||
Reference in New Issue
Block a user