From c391b0d2df3d3bbb767da6e71d4cfe1942312e9c Mon Sep 17 00:00:00 2001 From: Diego Noceda Date: Mon, 4 Nov 2024 20:41:58 +0100 Subject: [PATCH] removed 'results' from URL path on pagination as it is already there (#525) --- frontend/src/result-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/result-list.js b/frontend/src/result-list.js index e2dc7cc0..6bdf7d09 100644 --- a/frontend/src/result-list.js +++ b/frontend/src/result-list.js @@ -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) => {