[Bug fix] Timeline had from and to reversed

This commit is contained in:
Kanchan Chauhan 2018-07-19 10:58:47 +05:30
parent 09735e9f3e
commit 8cd6545bfe

View file

@ -490,8 +490,8 @@ frappe.ui.form.Timeline = Class.extend({
parts.push(__('{0} from {1} to {2} in row #{3}', [
frappe.meta.get_label(me.frm.fields_dict[row[0]].grid.doctype,
p[0]),
(frappe.ellipsis(p[2], 40) || '""').bold(),
(frappe.ellipsis(p[1], 40) || '""').bold(),
(frappe.ellipsis(p[2], 40) || '""').bold(),
row[1]
]));
}