7489-testToMaster #408

Merged
alexm merged 292 commits from 7489-testToMaster into master 2024-05-28 05:33:17 +00:00
1 changed files with 4 additions and 5 deletions
Showing only changes of commit 80336868dc - Show all commits

View File

@ -13,12 +13,11 @@ export default function useRedirect() {
const { matched: matches } = router.currentRoute.value;
const { path } = matches.at(-1);
if (data.length === 1)
return router.push({
path: path.replace(/\/(list|-list|:id)/, `/${data[0].id}`),
});
let to = path.replace(/:id.*/, '');
router.push({ path: path.replace(/:id.*/, '') });
if (data.length === 1) to = path.replace(/\/(list|-list|:id)/, `/${data[0].id}`);
router.push({ path: to });
};
return { navigate };