summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-10-04 14:57:01 +0200
committerRichard Steinmetz <richard@steinmetz.cloud>2022-10-04 14:57:01 +0200
commit63562b595dfe950a797bdc16859e9983c4a8d2d7 (patch)
tree78b78e586ec77f87854d7017d3316444f82372ca /src
parent795b7f1ced468fd138060f559ea141fac862099d (diff)
Fix circles member picker
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'src')
-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">