Skip to content

Commit

Permalink
Merge pull request #2627 from glific/ticket/filter-name-or-phone
Browse files Browse the repository at this point in the history
Added filter for name or phone in tickets
  • Loading branch information
mdshamoon authored Nov 21, 2023
2 parents 9077baf + be18448 commit e40ca05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/containers/Ticket/TicketList/TicketList.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const wrapper = (

setUserSession(JSON.stringify({ roles: ['Admin'] }));

test('should load the trigger list', async () => {
test('should load the ticket list', async () => {
const { getByText } = render(wrapper);

expect(getByText('Loading...')).toBeInTheDocument();
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Ticket/TicketList/TicketList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export const TicketList = () => {
button={{ show: false }}
listIcon={ticketIcon}
{...queries}
searchParameter={['body']}
searchParameter={['nameOrPhone']}
{...columnAttributes}
additionalAction={additionalAction}
filters={filter}
Expand Down

0 comments on commit e40ca05

Please sign in to comment.