diff options
author | Satoshi Nakamatsu <satoshicano@gmail.com> | 2019-02-13 12:42:29 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.m.gray@gmail.com> | 2019-02-13 12:42:29 +0000 |
commit | ad487147c6b8d81630b15db5ecf65c3862339ca6 (patch) | |
tree | c99b06b622a1e297951a8513e2145141befa7df2 /app | |
parent | 6cbffb8aad43d720d1e73f515139d6a406ffe2a9 (diff) | |
download | gitlab-ce-ad487147c6b8d81630b15db5ecf65c3862339ca6.tar.gz |
add title attr to display file name
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/vue_shared/components/file_row.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/vue_shared/components/file_row.vue b/app/assets/javascripts/vue_shared/components/file_row.vue index f54033efc54..0cbcdbf2eb4 100644 --- a/app/assets/javascripts/vue_shared/components/file_row.vue +++ b/app/assets/javascripts/vue_shared/components/file_row.vue @@ -136,6 +136,7 @@ export default { <div v-else :class="fileClass" + :title="file.name" class="file-row" role="button" @click="clickFile" |