Change filter

This commit is contained in:
Nikolaos Laskaris 2017-11-07 11:26:33 +02:00
parent cba4d3a261
commit 7ca2ff9eb4
1 changed files with 3 additions and 3 deletions

View File

@ -14,10 +14,10 @@ export class ProjectTableFilterPipe implements PipeTransform {
return ( return (
row.label.indexOf(query) > -1 || row.label.indexOf(query) > -1
//row.version == query || //|| row.version == query
row.id.indexOf(query) > -1 //|| row.id.indexOf(query) > -1
) )
}); });