summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-10-04 14:57:01 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-10-04 14:02:13 +0000
commit0303cda470816f8d7c22eb8aa860d0d419df2f14 (patch)
treefad61d92751fd9aecfd9677a5dc12123d330fa4f
parent8f79d91458a061d3e6d5f80d112feacd497fbc8a (diff)
Fix circles member picker
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
-rw-r--r--src/components/EntityPicker/EntityPicker.vue7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/EntityPicker/EntityPicker.vue b/src/components/EntityPicker/EntityPicker.vue
index 0aca9722..8730eafd 100644
--- a/src/components/EntityPicker/EntityPicker.vue
+++ b/src/components/EntityPicker/EntityPicker.vue
@@ -38,15 +38,16 @@
</div>
<!-- Loading -->
- <EmptyContent :title="t('contacts', 'Loading …')">
+ <EmptyContent v-if="loading" :title="t('contacts', 'Loading …')">
<template #icon>
- <IconLoading v-if="loading" :size="20" />
+ <IconLoading :size="20" />
</template>
</EmptyContent>
- <template v-if="Object.keys(selectionSet).length > 0">
+ <template v-else>
<!-- Picked entities -->
<transition-group
+ v-if="Object.keys(selectionSet).length > 0"
name="zoom"
tag="ul"
class="entity-picker__selection">