diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index 76a0d1bea..1d29c025a 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -190,13 +190,6 @@
-
-
-
+
+
+
@@ -306,6 +306,7 @@ export default {
searchQuery: '',
showContactPicker: false,
contactPickerforGroup: null,
+ pickerData: [],
pickerTypes: [{
id: 'contact',
label: t('contacts', 'Contacts'),
@@ -720,6 +721,8 @@ export default {
// Bulk contacts group management handlers
addContactsToGroup(group) {
+ console.debug('Contacts picker opened for group', group)
+
// Get the full group if we provided the group name only
if (typeof group === 'string') {
group = this.groups.find(a => a.name === group)