summaryrefslogtreecommitdiffstats
path: root/src/components/Properties/PropertyGroups.vue
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-06-19 07:36:52 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-08-21 09:56:07 +0200
commit63b2aff43903d51fc382a7c6cb0019845363c183 (patch)
treea88f3787e8bf2f28fe05388b66bdb9f198b83512 /src/components/Properties/PropertyGroups.vue
parentd8ede82510afe55a06c754710463a45eab6e5d7c (diff)
Temp
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties/PropertyGroups.vue')
-rw-r--r--src/components/Properties/PropertyGroups.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyGroups.vue b/src/components/Properties/PropertyGroups.vue
index 03026992..63990e08 100644
--- a/src/components/Properties/PropertyGroups.vue
+++ b/src/components/Properties/PropertyGroups.vue
@@ -22,7 +22,9 @@
<template>
<div v-if="propModel" class="grid-span-2 property property--without-actions">
- <!-- NO title if first element for groups -->
+ <PropertyTitle
+ icon="icon-contacts-dark"
+ :readable-name="t('contacts', 'Groups')" />
<div class="property__row">
<div class="property__label">
@@ -60,11 +62,13 @@
import debounce from 'debounce'
import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import Contact from '../../models/contact'
+import PropertyTitle from './PropertyTitle'
export default {
name: 'PropertyGroups',
components: {
+ PropertyTitle,
Multiselect,
},