fix: Convert page route to title case

This commit is contained in:
Suraj Shetty 2019-05-01 15:57:35 +05:30
parent d7238746b7
commit e33f89e4e6

View file

@ -658,7 +658,7 @@ Object.assign(frappe.utils, {
if (route[0] === 'modules') {
return __('{0} Modules', [route[1]]);
}
return __(route[0]);
return __(frappe.utils.to_title_case(route[0], true));
},
report_column_total: function(values, column, type) {
if (column.column.fieldtype == "Percent" || type === "mean") {