diff --git a/src/containers/Ticket/TicketList/TicketList.test.tsx b/src/containers/Ticket/TicketList/TicketList.test.tsx index 8d45edb58..0911178ea 100644 --- a/src/containers/Ticket/TicketList/TicketList.test.tsx +++ b/src/containers/Ticket/TicketList/TicketList.test.tsx @@ -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(); diff --git a/src/containers/Ticket/TicketList/TicketList.tsx b/src/containers/Ticket/TicketList/TicketList.tsx index 230901b0a..197703d2c 100644 --- a/src/containers/Ticket/TicketList/TicketList.tsx +++ b/src/containers/Ticket/TicketList/TicketList.tsx @@ -190,7 +190,7 @@ export const TicketList = () => { button={{ show: false }} listIcon={ticketIcon} {...queries} - searchParameter={['body']} + searchParameter={['nameOrPhone']} {...columnAttributes} additionalAction={additionalAction} filters={filter}