Skip to content

Commit

Permalink
fix bug with no search term after UX update
Browse files Browse the repository at this point in the history
  • Loading branch information
nkan-aot2 authored Nov 19, 2024
1 parent 9098052 commit 04c3c0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const fetchHistoricalSearchData = ({
size: size,
sortingitem: sort[0]['field'],
sortingorder: sort[0]['sort'],
search: search,
search: (keywords.length === 1 && keywords[0] === "") ? null : search,
keywords: keywords,
requestType: requestType,
requestFlags: requestFlags,
Expand Down

0 comments on commit 04c3c0c

Please sign in to comment.