You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried resolving the issue using the support portal
What browsers are you seeing the problem on?
Firefox
Describe the bug
Example: Going to page 8 of shaders and then searching for "Insanity" shows no shaders exist, but going to page one and searching the same thing correctly shows the two shaders in the list that contain the phrase "Insanity"
This happens because q=Insanity is appended to the parameter page=8 when a search text is entered.
Input search text, in this example use Insanity, the url is now https://modrinth.com/shaders?q=Insanity&page=8 with an error message "No results found for your query!"
Fixesmodrinth#3176
**Changes**:
- Sets the pagination to page one if the search is updated. This is the norm on most websites, and how users expect it to work.
- Join `setPage` into `updateSearchResults`
- Take a page number in `updateSearchResults`
- Remove unused param to `updateSearchResults`
- Update `watch` to not double requests
- use `scrollToTop` utility function
Fixes#3176
**Changes**:
- Sets the pagination to page one if the search is updated. This is the norm on most websites, and how users expect it to work.
- Join `setPage` into `updateSearchResults`
- Take a page number in `updateSearchResults`
- Remove unused param to `updateSearchResults`
- Update `watch` to not double requests
- use `scrollToTop` utility function
Please confirm the following.
What browsers are you seeing the problem on?
Firefox
Describe the bug
Example: Going to page 8 of shaders and then searching for "Insanity" shows no shaders exist, but going to page one and searching the same thing correctly shows the two shaders in the list that contain the phrase "Insanity"
This happens because
q=Insanity
is appended to the parameterpage=8
when a search text is entered.Steps to reproduce
Insanity
, the url is nowhttps://modrinth.com/shaders?q=Insanity&page=8
with an error message "No results found for your query!"&page=8
from urlExpected behavior
Insanity
, the url should now behttps://modrinth.com/shaders?q=Insanity&page=1
Additional context
No response
The text was updated successfully, but these errors were encountered: