Skip to content

Commit

Permalink
Merge pull request #44572 from frappe/mergify/bp/version-15-hotfix/pr…
Browse files Browse the repository at this point in the history
…-44538

fix: add labels for translation in purchase_order_analysis.py (backport #44538)
  • Loading branch information
ruthra-kumar authored Dec 6, 2024
2 parents 672aa42 + f06827c commit f4cdf02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def prepare_data(data, filters):


def prepare_chart_data(pending, completed):
labels = ["Amount to Bill", "Billed Amount"]
labels = [_("Amount to Bill"), _("Billed Amount")]

return {
"data": {"labels": labels, "datasets": [{"values": [pending, completed]}]},
Expand Down

0 comments on commit f4cdf02

Please sign in to comment.