1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

strip asterisk from subtitle of cards

This commit is contained in:
Kyle Spearrin 2018-09-12 10:27:21 -04:00
parent cf795bc39c
commit 7dc14a0d18

View File

@ -45,8 +45,8 @@ export class SearchService implements SearchServiceAbstraction {
(builder as any).field('subTitle', {
boost: 5,
extractor: (c: CipherView) => {
if (c.type === CipherType.Card && c.subTitle.indexOf('*') === 0) {
return c.subTitle.substr(1);
if (c.subTitle != null && c.type === CipherType.Card) {
return c.subTitle.replace(/\*/g, '');
}
return c.subTitle;
},