Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Simple Search Bug Fix (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
anishfyle authored Jul 28, 2023
1 parent 741f518 commit 1041b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/si/expense-groups/expense-groups.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class ExpenseGroupsComponent implements OnInit, OnDestroy {
return data.description.employee_email.includes(filterText) ||
('Reimbursable'.toLowerCase().includes(filterText) && data.fund_source === 'PERSONAL') ||
('Corporate Credit Card'.toLowerCase().includes(filterText) && data.fund_source !== 'PERSONAL') ||
data.description.claim_number.includes(filterText);
(data.description.claim_number && data.description.claim_number.includes(filterText));
}

searchByText2(data: SkipExportLog, filterText: string) {
Expand Down

0 comments on commit 1041b21

Please sign in to comment.