Merge pull request #25 from loki-project/fix/duplicate-search

[Fix] User searching
pull/30/head
sachaaaaa 7 years ago committed by GitHub
commit 726f6b11f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
const 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