fix: made course filter mandatory for course progress summary report

This commit is contained in:
Jannat Patel
2021-11-01 14:46:16 +05:30
parent 125b8d61d9
commit 43311dfb73
2 changed files with 4 additions and 3 deletions

View File

@@ -8,7 +8,8 @@ frappe.query_reports["Course Progress Summary"] = {
"fieldname": "course", "fieldname": "course",
"label": __("Course"), "label": __("Course"),
"fieldtype": "Link", "fieldtype": "Link",
"options": "LMS Course" "options": "LMS Course",
"reqd": 1,
} }
] ]
}; };