Skip to content

Commit

Permalink
removed 'results' from URL path on pagination as it is already there (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Fynardo authored Nov 4, 2024
1 parent c16bab1 commit c391b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/result-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export class ResultList extends React.Component {
let params = buildParams(this.state.filters);
params.push('page=' + this.state.page);
params.push('pageSize=' + this.state.pageSize);
this.props.navigate('results?' + params.join('&'))
this.props.navigate('?' + params.join('&'))
}

setPage = (_event, pageNumber) => {
Expand Down

0 comments on commit c391b0d

Please sign in to comment.