summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyGroups.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Properties/PropertyGroups.vue')
-rw-r--r--src/components/Properties/PropertyGroups.vue14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue
index c054c814..55abd064 100644
--- a/src/components/Properties/PropertyGroups.vue
+++ b/src/components/Properties/PropertyGroups.vue
@@ -49,12 +49,14 @@
@option:deselected="updateValue"
@close="updateValue">
<!-- show how many groups are hidden and add tooltip -->
- <span slot="limit" v-tooltip.auto="formatGroupsTitle" class="multiselect__limit">
- +{{ localValue.length - 3 }}
- </span>
- <span slot="noResult">
- {{ t('contacts', 'No results') }}
- </span>
+ <template #limit>
+ <span v-tooltip.auto="formatGroupsTitle" class="multiselect__limit">
+ +{{ localValue.length - 3 }}
+ </span>
+ </template>
+ <template #no-options>
+ <span>{{ t('contacts', 'No results') }}</span>
+ </template>
</NcSelect>
<p v-else>
{{ localValue.length === 0 ? t('contacts','None'): localValue.toString() }}