diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-08-25 14:57:26 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-08-26 20:29:59 +0200 |
commit | 06f8c54386f5345827cf9af3bdb54f23bef8ff3c (patch) | |
tree | c902a6f6746e7c57c827bd99269a8013d797d338 /core/src/components | |
parent | df99d8f0e02c23b8b9fb43c72183eef5e49430ba (diff) | |
download | nextcloud-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.vue | 4 |
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> |