Compare commits

...

2 Commits

Author SHA1 Message Date
Carlos Satorres 1be1efec95 Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7925_fix_cast_param_id
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-22 14:21:57 +02:00
Javier Segarra 0f9d727015 fix: problem cast param id
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-03 22:00:57 +02:00
1 changed files with 4 additions and 0 deletions

View File

@ -68,6 +68,10 @@ export default route(function (/* { store, ssrContext } */) {
if (!hasRequiredAcls) return next({ path: '/' });
}
if (to.params.id && !/^\d+$/.test(to.params.id)) {
return next(to.matched[1]?.children[0]?.redirect);
}
next();
});