Skip to content

Commit

Permalink
add entity title when hovering tree nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Lagrimas committed Sep 26, 2023
1 parent 163e629 commit 9f97fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/ontologies/entities/EntityTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ function TreeLink({
return (
<span>
<a
title={entity.getIri()}
title={`${title} [${entity.getIri()}]`}
className={"link-default"}
onClick={() => onNavigateToEntity(ontology, entity)}
>
Expand Down

0 comments on commit 9f97fad

Please sign in to comment.