Skip to content

Commit

Permalink
feat(client): truncate button add title attribute (#532)
Browse files Browse the repository at this point in the history
  • Loading branch information
btea authored Jul 22, 2024
1 parent aef1b55 commit cedbccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/graph/GraphDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const keys = [
}" @click="copy(data.name)"
/>
</span>
<button hover="underline" truncate text-left text-gray-500 @click="_openInEditor(data!.path)">
<button hover="underline" truncate text-left text-gray-500 :title="data?.displayPath" @click="_openInEditor(data!.path)">
{{ data?.displayPath }}
</button>
</div>
Expand Down

0 comments on commit cedbccd

Please sign in to comment.