diff options
-rw-r--r-- | web_src/js/components/DiffFileTreeItem.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web_src/js/components/DiffFileTreeItem.vue b/web_src/js/components/DiffFileTreeItem.vue index 245286dded..f0a3d909b9 100644 --- a/web_src/js/components/DiffFileTreeItem.vue +++ b/web_src/js/components/DiffFileTreeItem.vue @@ -1,5 +1,6 @@ <template> - <div v-show="show"> + <div v-show="show" class="tooltip" :title="item.name"> + <!--title instead of tooltip above as the tooltip needs too much work with the current methods, i.e. not being loaded or staying open for "too long"--> <div class="item" :class="item.isFile ? 'filewrapper gt-p-1' : ''"> <!-- Files --> <SvgIcon |