fixed faq bugs
This commit is contained in:
+3
-3
@@ -283,8 +283,8 @@
|
||||
|
||||
<nuxt-link to="/account" v-if="authUser">
|
||||
<img
|
||||
v-if="profileImage"
|
||||
:src="profileImage"
|
||||
v-if="authUser.avatarMedia"
|
||||
:src="authUser.avatarMedia"
|
||||
alt="profile"
|
||||
class="h-[3.698vw] w-[3.698vw] rounded-full p-[0.521vw]"
|
||||
/>
|
||||
@@ -365,9 +365,9 @@
|
||||
|
||||
<script setup>
|
||||
const {data: image} = await useFetch('/api/auth/me')
|
||||
const profileImage = useState('profileImage', () => image.value?.avatarMedia)
|
||||
const { authUser } = useAuth();
|
||||
const showSearchBox = useState("showSearchBox", () => false);
|
||||
|
||||
const search = ref(null);
|
||||
const openSearchBox = () => {
|
||||
search.value = "";
|
||||
|
||||
Reference in New Issue
Block a user