fix: add string for translation in delayed_tasks_summary.py

This commit is contained in:
mahsem
2024-12-05 16:13:07 +01:00
committed by GitHub
parent 1ac292285e
commit 84b54f549a

View File

@@ -77,7 +77,7 @@ def get_chart_data(data):
charts = {
"data": {
"labels": [_("On Track"), _("Delayed")],
"datasets": [{"name": "Delayed", "values": [on_track, delay]}],
"datasets": [{"name": _("Delayed"), "values": [on_track, delay]}],
},
"type": "percentage",
"colors": ["#84D5BA", "#CB4B5F"],