Skip to content

Commit 14d30c7

Browse files
authored
Merge pull request #5253 from fedspendingtransparency/fix/dev-13637
DEV-13637: Pagination is off on the Advanced Search page post redirect
2 parents 71a16bf + 34bfa07 commit 14d30c7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/_scss/pages/search/results/table/resultsTable.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
.advanced-search__table-wrapper {
5151
width: auto;
5252
overflow-y: auto;
53+
max-height: 638px;
5354

5455
@media (min-width: $tablet-screen) {
5556
overflow-x: scroll;

src/js/components/search/table/ResultsTable.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ const ResultsTable = (props) => {
179179
<>
180180
<div
181181
className="advanced-search__table-wrapper"
182-
id="advanced-search__table-wrapper"
183-
style={props.resultsCount >= props.resultsLimit ? { height: '638px' } : {}}>
182+
id="advanced-search__table-wrapper">
184183
<Table
185184
classNames="table-for-new-search-page award-results-table-dtui"
186185
stickyFirstColumn={!props.isMobile}

0 commit comments

Comments
 (0)