-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor bugfixes #180
Minor bugfixes #180
Conversation
FlorianCassayre
commented
Sep 1, 2020
•
edited
Loading
edited
- addresses UI testing: issues #172
- DocumentAuthors component raising exception
- "checkout" button in loan requests not disabled during loading
- LiteratureCover flickering on page change (closes literature: cover image displays previous state #135)
- hide navigation buttons in patron loans on empty result set
- BorrowingRequestPatronLoan state not reset
- ESSelectorLoanRequest request button not disabled
- SearchSortOrderElementMobile uninitialized attribute
- ExportSearchResults not starting from the first page
- ScrollingMenu first element not selected due to typo
- HitsSearch & ESSelector toggleable initial focus, disabled by default
- LoanMetadata invalid dates displayed
7ba52e7
to
9f0ae99
Compare
* DocumentAuthors component raising exception * "checkout" button in loan requests not disabled during loading * LiteratureCover flickering on page change * hide navigation buttons in patron loans on empty result set * BorrowingRequestPatronLoan state not reset * ESSelectorLoanRequest request button not disabled * SearchSortOrderElementMobile uninitialized attribute * ExportSearchResults not starting from the first page * ScrollingMenu first element not selected due to typo * HitsSearch & ESSelector toggleable initial focus, disabled by default * LoanMetadata invalid dates displayed
9f0ae99
to
a139432
Compare
@@ -105,6 +105,7 @@ class ExportSearchResultsWithState extends Component { | |||
|
|||
// append the `format` param | |||
const params = Qs.parse(queryString); | |||
params['page'] = 1; // Start from the first page |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how will it behave with other pages?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New behavior: the button has the same effect, regardless the currently selected page. Namely it exports the results of the search without taking pagination into account. I assumed this was the intended semantic of that button since it's said to return the "first 10,000 records".
Did I miss something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to investigate this further to make sure, I will merge this and start a ticket