summaryrefslogtreecommitdiffstats
path: root/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-01-16 12:25:13 +0100
committerJoas Schilling <coding@schilljs.com>2020-01-16 12:25:13 +0100
commit0fe4e38a34043434618bfc59da482faae4fa028a (patch)
treef24c183e594b6d434b0bd9eeb3b729d8dc383848 /src/components/LeftSidebar/ConversationsList/ConversationsList.vue
parent66ebfc18fdc569e1e48765fa54cab9d805e5f1b6 (diff)
Dummy placeholders for the participant list
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components/LeftSidebar/ConversationsList/ConversationsList.vue')
-rw-r--r--src/components/LeftSidebar/ConversationsList/ConversationsList.vue11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
index 4a12fcf4f..4cd7b0129 100644
--- a/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
+++ b/src/components/LeftSidebar/ConversationsList/ConversationsList.vue
@@ -25,11 +25,12 @@
v-for="item of conversationsList"
:key="item.id"
:item="item" />
- <LoadingHint v-if="!initialisedConversations" />
- <LoadingHint v-if="!initialisedConversations" />
- <LoadingHint v-if="!initialisedConversations" />
- <LoadingHint v-if="!initialisedConversations" />
- <LoadingHint v-if="!initialisedConversations" />
+ <template
+ v-if="!initialisedConversations">
+ <LoadingHint
+ v-for="n in 5"
+ :key="n" />
+ </template>
<Hint v-else-if="searchText && !conversationsList.length"
:hint="t('spreed', 'No matches')" />
</ul>