Skip to content

Commit

Permalink
Merge pull request #4837 from freelawproject/fix-latest-opinions-in-home
Browse files Browse the repository at this point in the history
Fixed Home Latest Opinions sorting key
  • Loading branch information
mlissner authored Dec 17, 2024
2 parents b0764a4 + 15a11d7 commit a83812b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl/search/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,10 @@ def show_results(request: HttpRequest) -> HttpResponse:
mutable_GET["filed_before"] = date.today()

# Load the render_dict with good results that can be shown in the
# "Latest Cases" section
# "Latest Opinions" section
mutable_GET.update(
{
"order_by": "dateArgued desc",
"order_by": "dateFiled desc",
"type": SEARCH_TYPES.OPINION,
}
)
Expand Down

0 comments on commit a83812b

Please sign in to comment.