Browse Source

only search name on edge

pull/3/head
Kyle Spearrin 8 years ago
parent
commit
c2bdabc098
  1. 11
      src/angular/pipes/search-ciphers.pipe.ts

11
src/angular/pipes/search-ciphers.pipe.ts

@ -5,10 +5,18 @@ import { @@ -5,10 +5,18 @@ import {
import { CipherView } from '../../models/view/cipherView';
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
@Pipe({
name: 'searchCiphers',
})
export class SearchCiphersPipe implements PipeTransform {
private onlySearchName = false;
constructor(private platformUtilsService: PlatformUtilsService) {
this.onlySearchName = platformUtilsService.isEdge();
}
transform(ciphers: CipherView[], searchText: string): CipherView[] {
if (ciphers == null || ciphers.length === 0) {
return [];
@ -23,6 +31,9 @@ export class SearchCiphersPipe implements PipeTransform { @@ -23,6 +31,9 @@ export class SearchCiphersPipe implements PipeTransform {
if (c.name != null && c.name.toLowerCase().indexOf(searchText) > -1) {
return true;
}
if (this.onlySearchName) {
return false;
}
if (c.subTitle != null && c.subTitle.toLowerCase().indexOf(searchText) > -1) {
return true;
}

Loading…
Cancel
Save