summaryrefslogtreecommitdiffstats
path: root/src/components/EntityPicker/EntityPicker.vue
diff options
context:
space:
mode:
authorgreta <gretadoci@gmail.com>2023-11-08 16:42:13 +0100
committergreta <gretadoci@gmail.com>2023-11-09 21:04:54 +0100
commitbf0908152cf2f825c904e226780b211a41f8a2ab (patch)
tree619d8472d29abf3203171db8b9aeeca1df9cf5d8 /src/components/EntityPicker/EntityPicker.vue
parent1611f5effcd8d7e2435b62f92a1a863df46193be (diff)
Upgrade to Nextcloud vue 8.0.0
Signed-off-by: greta <gretadoci@gmail.com>
Diffstat (limited to 'src/components/EntityPicker/EntityPicker.vue')
-rw-r--r--src/components/EntityPicker/EntityPicker.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/EntityPicker/EntityPicker.vue b/src/components/EntityPicker/EntityPicker.vue
index 1d20b3d6..391e45e4 100644
--- a/src/components/EntityPicker/EntityPicker.vue
+++ b/src/components/EntityPicker/EntityPicker.vue
@@ -36,7 +36,7 @@
</div>
<!-- Loading -->
- <EmptyContent v-if="loading" :title="t('contacts', 'Loading …')">
+ <EmptyContent v-if="loading" :name="t('contacts', 'Loading …')">
<template #icon>
<IconLoading :size="20" />
</template>
@@ -55,7 +55,7 @@
</transition-group>
<!-- No recommendations -->
- <EmptyContent v-if="dataSet.length === 0" :title="t('contacts', 'Search for people to add')">
+ <EmptyContent v-if="dataSet.length === 0" :name="t('contacts', 'Search for people to add')">
<template #icon>
<IconSearch :size="20" />
</template>
@@ -70,7 +70,7 @@
:estimate-size="44"
:extra-props="{ selection: selectionSet, onClick }" />
- <EmptyContent v-else-if="searchQuery" :title="t('contacts', 'No results')">
+ <EmptyContent v-else-if="searchQuery" :name="t('contacts', 'No results')">
<template #icon>
<IconSearch :size="20" />
</template>