Skip to content

Commit

Permalink
fix(graph): use full label for title on sidebar composite node
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Sep 24, 2024
1 parent cda1329 commit f8bc5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph/client/src/app/feature-projects/project-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function CompositeNodeListItem({
<label
className="ml-2 block w-full cursor-pointer truncate rounded-md p-2 font-mono font-normal transition hover:bg-slate-50 hover:dark:bg-slate-700"
data-project={compositeNode.id}
title={compositeNode.label}
title={label}
data-active={compositeNode.state !== 'hidden'}
onClick={toggleProject}
>
Expand Down

0 comments on commit f8bc5ba

Please sign in to comment.