Skip to content

Commit

Permalink
fix(search): Fixed Home Latest Opinions sorting key
Browse files Browse the repository at this point in the history
  • Loading branch information
albertisfu committed Dec 17, 2024
1 parent b0764a4 commit 15a11d7
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 15a11d7

Please sign in to comment.