Merge pull request #12993 from nextchamp-saqib/auto-repeat-dashboard-fix

fix: auto repeat schedule not rendered in the dashboard
This commit is contained in:
mergify[bot] 2021-05-08 19:19:17 +00:00 committed by GitHub
commit 1c0233ccd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ frappe.ui.form.on('Auto Repeat', {
frappe.auto_repeat.render_schedule = function(frm) {
if (!frm.is_dirty() && frm.doc.status !== 'Disabled') {
frm.call("get_auto_repeat_schedule").then(r => {
frm.dashboard.wrapper.empty();
frm.dashboard.reset();
frm.dashboard.add_section(
frappe.render_template("auto_repeat_schedule", {
schedule_details: r.message || []