Details
-
Type:
Problem report
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 3.0.14, 4.0.0alpha3
-
Fix Version/s: 3.0.16rc1, 3.4.8rc1, 4.0.0alpha5, 4.0 (plan)
-
Component/s: Frontend (F)
-
Labels:None
-
Team:Team B
-
Sprint:Sprint 26, Sprint 27, Sprint 28
-
Story Points:0.125
Description
Steps to reproduce:
Default search Limit for search and filter results: 1000
If we have more maintenances then configured limit.
Clicking on Order by Active since
Result:
That does not guarantee to see a proper result based on (ASC/DESC),
Because query is formed like
ORDER BY m.active_since LIMIT 1001 OFFSET 0
So the output is always ASC and cropped if exceeds filter limit.
Expected
Order by should change to ASC or DESC based on frontend setting.