Skip to content

Commit 166c0f2

Browse files
committed
UI: Fix reverse collapse/expand label in sidebar tree
1 parent 8a22757 commit 166c0f2

File tree

1 file changed

+1
-1
lines changed
  • code/core/src/manager/components/sidebar

1 file changed

+1
-1
lines changed

code/core/src/manager/components/sidebar/Tree.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ const Node = React.memo<NodeProps>(function Node({
383383
padding="small"
384384
variant="ghost"
385385
className="sidebar-subheading-action"
386-
ariaLabel={isFullyExpanded ? 'Expand' : 'Collapse'}
386+
ariaLabel={isFullyExpanded ? 'Collapse' : 'Expand'}
387387
data-action="expand-all"
388388
data-expanded={isFullyExpanded}
389389
onClick={(event) => {

0 commit comments

Comments
 (0)