summaryrefslogtreecommitdiffstats
path: root/core/src/components/UnifiedSearch/SearchResult.vue
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/components/UnifiedSearch/SearchResult.vue')
-rw-r--r--core/src/components/UnifiedSearch/SearchResult.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/components/UnifiedSearch/SearchResult.vue b/core/src/components/UnifiedSearch/SearchResult.vue
index 2df3123f8fe..dfd20868480 100644
--- a/core/src/components/UnifiedSearch/SearchResult.vue
+++ b/core/src/components/UnifiedSearch/SearchResult.vue
@@ -52,7 +52,7 @@
<!-- Title and sub-title -->
<span class="unified-search__result-content">
<h3 class="unified-search__result-line-one" :title="title">
- <Highlight :text="title" :search="query" />
+ <NcHighlight :text="title" :search="query" />
</h3>
<h4 v-if="subline" class="unified-search__result-line-two" :title="subline">{{ subline }}</h4>
</span>
@@ -60,13 +60,13 @@
</template>
<script>
-import Highlight from '@nextcloud/vue/dist/Components/Highlight'
+import NcHighlight from '@nextcloud/vue/dist/Components/NcHighlight'
export default {
name: 'SearchResult',
components: {
- Highlight,
+ NcHighlight,
},
props: {