Skip to content

Commit

Permalink
Fixes #37768 - Respect the updateParamsByUrl param
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz committed Aug 29, 2024
1 parent aa2a03c commit b943fbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const TableIndexPage = ({
const { location: { search: historySearch } = {} } = history || {};
const urlParams = new URLSearchParams(historySearch);
const urlParamsSearch = urlParams.get('search') || '';
const search = urlParamsSearch || getURIsearch();
const search = updateParamsByUrl ? urlParamsSearch || getURIsearch() : '';
const defaultParams = { search: search || '' };
if (updateParamsByUrl) {
const urlPage = urlParams.get('page');
Expand Down

0 comments on commit b943fbd

Please sign in to comment.