Fix create conversation appearing even if you already have a conversation with the contact.

pull/25/head
Mikunj 7 years ago
parent 1ff1f50e41
commit 8d9fbdb3df

@ -84,6 +84,11 @@
this.typeahead_view.collection.reset(
this.typeahead.filter(isSearchable)
);
// Check if the query is in the model list
// If it is then hide the new contact view
var modelExists = this.typeahead_view.collection.find(item => item.get('id') == query);
if (modelExists) this.new_contact_view.$el.hide();
})
);
/* eslint-enable more/no-then */

Loading…
Cancel
Save