Skip to content

Commit

Permalink
fix: quote filter createdby
Browse files Browse the repository at this point in the history
  • Loading branch information
b3aton committed Mar 24, 2023
1 parent b3d8e9a commit 29d29fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/storefront/src/components/table/B3PaginationTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const PaginationTable:(props: B3PaginationTableProps) => ReactElement = ({
const createdByUser = createdByUserRegArr?.length ? createdByUserRegArr[0].trim() : ''
const newSearchParams = {
...searchParams,
createdBy: emailRegArr?.length ? '' : createdByUser,
createdBy: createdByUser,
email: emailRegArr?.length ? emailRegArr[1] : '',
}
const params = {
Expand Down

0 comments on commit 29d29fb

Please sign in to comment.