fix: remove slashes from the report link in workspace card (#25593)
This commit is contained in:
parent
90c97b3c13
commit
4ab6a34474
1 changed files with 1 additions and 1 deletions
|
|
@ -1300,7 +1300,7 @@ Object.assign(frappe.utils, {
|
|||
if (item.is_query_report) {
|
||||
route = "query-report/" + item.name;
|
||||
} else if (!item.doctype) {
|
||||
route = "/report/" + item.name;
|
||||
route = "report/" + item.name;
|
||||
} else {
|
||||
route = frappe.router.slug(item.doctype) + "/view/report/" + item.name;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue