fixed neighbours search box

This commit is contained in:
Matthias Hannig 2017-05-30 10:02:12 +02:00
parent 1d6393d9d9
commit 6c38284532

View File

@ -26,7 +26,7 @@ function _filteredProtocols(protocols, filter) {
// Filter protocols
filtered = _.filter(protocols, (p) => {
return (p.neighbor_address.toLowerCase().indexOf(filter) != -1 ||
return (p.address.toLowerCase().indexOf(filter) != -1 ||
p.description.toLowerCase().indexOf(filter) != -1);
});