fix: filter document field using date

This commit is contained in:
Gursheen Anand 2023-10-10 15:21:43 +05:30
parent 8707fbf248
commit 56d1bf2732

View file

@ -20,6 +20,7 @@ frappe.ui.form.on("Audit Trail", {
return {
filters: {
amended_from: ["!=", ""],
creation: ["between", [frm.doc.start_date, frm.doc.end_date]],
},
};
});