fix: change default template value from 'high' to 'low' in services page

This commit is contained in:
Théophile Diot 2024-12-03 11:10:12 +01:00
parent b6ee15a66b
commit 59c70b51e6
No known key found for this signature in database
GPG key ID: FA995104A0BA376A

View file

@ -357,7 +357,7 @@ def services_service_page(service: str):
mode = request.args.get("mode", "easy")
search_type = request.args.get("type", "all")
template = request.args.get("template", "high")
template = request.args.get("template", "low")
db_templates = DB.get_templates()
db_custom_configs = DB.get_custom_configs(with_drafts=True, as_dict=True)
clone = None