subtitle should be searchable
This commit is contained in:
parent
015658b6df
commit
72d09b0331
|
@ -106,7 +106,7 @@
|
||||||
if (cipher.name && cipher.name.toLowerCase().indexOf(searchTerm) !== -1) {
|
if (cipher.name && cipher.name.toLowerCase().indexOf(searchTerm) !== -1) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (cipher.username && cipher.username.toLowerCase().indexOf(searchTerm) !== -1) {
|
if (cipher.subTitle && cipher.subTitle.toLowerCase().indexOf(searchTerm) !== -1) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (cipher.login && cipher.login.uri && cipher.login.uri.toLowerCase().indexOf(searchTerm) !== -1) {
|
if (cipher.login && cipher.login.uri && cipher.login.uri.toLowerCase().indexOf(searchTerm) !== -1) {
|
||||||
|
|
Loading…
Reference in New Issue