diff --git a/src/popup/app/vault/vaultController.js b/src/popup/app/vault/vaultController.js index 1a5d2833b9..3071d17ffc 100644 --- a/src/popup/app/vault/vaultController.js +++ b/src/popup/app/vault/vaultController.js @@ -106,7 +106,7 @@ if (cipher.name && cipher.name.toLowerCase().indexOf(searchTerm) !== -1) { return true; } - if (cipher.username && cipher.username.toLowerCase().indexOf(searchTerm) !== -1) { + if (cipher.subTitle && cipher.subTitle.toLowerCase().indexOf(searchTerm) !== -1) { return true; } if (cipher.login && cipher.login.uri && cipher.login.uri.toLowerCase().indexOf(searchTerm) !== -1) {