From 9b084b74503aa1aed5c383b86c29605c3e4e81e7 Mon Sep 17 00:00:00 2001 From: DESKTOP-D5ILJ4S\flr_3 Date: Fri, 6 Jul 2018 18:09:09 +0700 Subject: [PATCH] add item --- src/app/dashboard/filter.pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/dashboard/filter.pipe.ts b/src/app/dashboard/filter.pipe.ts index 0f1f71d..1ccf973 100644 --- a/src/app/dashboard/filter.pipe.ts +++ b/src/app/dashboard/filter.pipe.ts @@ -14,7 +14,7 @@ export class FilterPipe implements PipeTransform { const resultArray = []; for (const item of value) { console.log('item: ', item); - var string1 = item['team'].toLowerCase() + item['COMMENT'].toLowerCase() + item['custgroupName'].toLowerCase(); + var string1 = item['team'].toLowerCase() + item['COMMENT'].toLowerCase() + item['custgroupName'].toLowerCase() + item['STATUS'].toLowerCase() ; var string2 = filterString.toLowerCase(); if (string1.indexOf(string2) > -1) { resultArray.push(item); -- libgit2 0.21.2