fix(report): sort countries by risk
This commit is contained in:
parent
3e8b3a38c8
commit
ba1b597c73
1 changed files with 1 additions and 1 deletions
|
@ -139,5 +139,5 @@ def report_blocks() -> ResponseReturnValue:
|
||||||
return render_template("report_blocks.html.j2",
|
return render_template("report_blocks.html.j2",
|
||||||
blocked_today=blocked_today,
|
blocked_today=blocked_today,
|
||||||
origins=origins_with_deprecations,
|
origins=origins_with_deprecations,
|
||||||
countries=countries_report(),
|
countries=sorted(countries_report(), key=lambda c: c[0].risk_level),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue