kopia lustrzana https://github.com/nextcloud/social
FIX: decode search term before displaying it on screen.
Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>pull/774/head
rodzic
eca50cd168
commit
02b1ffe7ab
|
@ -32,7 +32,7 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<h3>{{ t('social', 'Searching for') }} {{ term }}</h3>
|
<h3>{{ t('social', 'Searching for') }} {{ decodeURIComponent(term) }}</h3>
|
||||||
<user-entry v-for="result in allResults" :key="result.id" :item="result" />
|
<user-entry v-for="result in allResults" :key="result.id" :item="result" />
|
||||||
<div v-if="hashtags.length > 0">
|
<div v-if="hashtags.length > 0">
|
||||||
<li v-for="tag in hashtags" :key="tag.hashtag" class="tag">
|
<li v-for="tag in hashtags" :key="tag.hashtag" class="tag">
|
||||||
|
|
Ładowanie…
Reference in New Issue