This commit is contained in:
2021-03-10 18:09:35 +00:00
parent cfadab9160
commit de084650b9
2 changed files with 8 additions and 20 deletions

View File

@@ -723,7 +723,6 @@ export default new Router({
//REPORT VIEW FROM URL
path: "/viewreport",
beforeEnter: async (to, from, next) => {
// (async function() {
//open report links have a query string /viewreport?oid=[objectid]&rid=[reportid]
let objectId = parseInt(to.query.oid);
let reportId = parseInt(to.query.rid);
@@ -739,8 +738,6 @@ export default new Router({
next("/applog");
}
//})();
next(false);
}
},