fix: filters in share url not working

This commit is contained in:
hasnain2808@gmail.com 2021-03-30 14:14:53 +05:30
parent 20eed12a9e
commit a6fce22c63

View file

@ -386,6 +386,8 @@ frappe.router = {
set_route_options_from_url(route) {
// set query parameters as frappe.route_options
var last_part = route[route.length - 1];
// add routing v2 compatability
if (!last_part.includes("?")) last_part = route[route.length - 1] + window.location.search
if (last_part.indexOf("?") < last_part.indexOf("=")) {
// has ? followed by =
let parts = last_part.split("?");