mirror of
https://github.com/thelounge/thelounge
synced 2024-11-15 00:37:13 +00:00
Move mentions loading text out of header
This commit is contained in:
parent
999095b7df
commit
177d4d78ba
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@
|
|||
<div class="mentions-popup">
|
||||
<div class="mentions-popup-title">
|
||||
Recent mentions
|
||||
<span v-if="isLoading">- Loading…</span>
|
||||
</div>
|
||||
<template v-if="resolvedMessages.length === 0">
|
||||
<p>There are no recent mentions.</p>
|
||||
<p v-if="isLoading">Loading…</p>
|
||||
<p v-else>There are no recent mentions.</p>
|
||||
</template>
|
||||
<template v-for="message in resolvedMessages" v-else>
|
||||
<div :key="message.id" :class="['msg', message.type]">
|
||||
|
|
Loading…
Reference in a new issue