summaryrefslogtreecommitdiffstats
path: root/core/src/components
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-08-25 14:57:26 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-08-26 20:29:59 +0200
commit06f8c54386f5345827cf9af3bdb54f23bef8ff3c (patch)
treec902a6f6746e7c57c827bd99269a8013d797d338 /core/src/components
parentdf99d8f0e02c23b8b9fb43c72183eef5e49430ba (diff)
downloadnextcloud-server-06f8c54386f5345827cf9af3bdb54f23bef8ff3c.tar.gz
nextcloud-server-06f8c54386f5345827cf9af3bdb54f23bef8ff3c.zip
Make ellipsized unified search results visible on hover
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/components')
-rw-r--r--core/src/components/UnifiedSearch/SearchResult.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/UnifiedSearch/SearchResult.vue b/core/src/components/UnifiedSearch/SearchResult.vue
index ffd4e2bf2f2..d5374832da9 100644
--- a/core/src/components/UnifiedSearch/SearchResult.vue
+++ b/core/src/components/UnifiedSearch/SearchResult.vue
@@ -30,10 +30,10 @@
<!-- Title and sub-title -->
<span class="unified-search__result-content">
- <h3 class="unified-search__result-line-one">
+ <h3 class="unified-search__result-line-one" :title="title">
<Highlight :text="title" :search="query" />
</h3>
- <h4 v-if="subline" class="unified-search__result-line-two">{{ subline }}</h4>
+ <h4 v-if="subline" class="unified-search__result-line-two" :title="subline">{{ subline }}</h4>
</span>
</a>
</template>