mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
[client] Fix guest search disclaimer not being displayed properly
This commit is contained in:
parent
b346cc20d9
commit
78c5e1dcdb
@ -26,7 +26,7 @@
|
||||
@slide-change="onSlideChange"
|
||||
>
|
||||
<swiper-slide>
|
||||
<template v-if="$i && tabs[swiperRef!.activeIndex] == 'notes'">
|
||||
<template v-if="$i">
|
||||
<template v-if="searchQuery == null || searchQuery.trim().length < 1">
|
||||
<transition :name="$store.state.animation ? 'zoom' : ''" appear>
|
||||
<div class="_fullinfo" ref="notes">
|
||||
@ -41,11 +41,11 @@
|
||||
</div>
|
||||
</transition>
|
||||
</template>
|
||||
<template v-else>
|
||||
<template v-else-if="tabs[swiperRef!.activeIndex] == 'notes'">
|
||||
<XNotes ref="notes" :pagination="notesPagination" />
|
||||
</template>
|
||||
</template>
|
||||
<template>
|
||||
<template v-else>
|
||||
<transition :name="$store.state.animation ? 'zoom' : ''" appear>
|
||||
<div class="_fullinfo" ref="notes">
|
||||
<img
|
||||
|
Loading…
Reference in New Issue
Block a user