mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
strip asterisk from subtitle of cards
This commit is contained in:
parent
cf795bc39c
commit
7dc14a0d18
@ -45,8 +45,8 @@ export class SearchService implements SearchServiceAbstraction {
|
|||||||
(builder as any).field('subTitle', {
|
(builder as any).field('subTitle', {
|
||||||
boost: 5,
|
boost: 5,
|
||||||
extractor: (c: CipherView) => {
|
extractor: (c: CipherView) => {
|
||||||
if (c.type === CipherType.Card && c.subTitle.indexOf('*') === 0) {
|
if (c.subTitle != null && c.type === CipherType.Card) {
|
||||||
return c.subTitle.substr(1);
|
return c.subTitle.replace(/\*/g, '');
|
||||||
}
|
}
|
||||||
return c.subTitle;
|
return c.subTitle;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user