refs #5989 btn redirection #69

Merged
alexm merged 19 commits from 5989-redirectSalix into dev 2023-08-09 10:39:54 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit dbd5715c13 - Show all commits

View File

@ -26,7 +26,7 @@ async function redirect() {
if (route?.params?.id) {
window.location.href = await getUrl(`${section}/${route.params.id}/summary`);
} else {
window.location.href = await getUrl(section + 'dashboard');
window.location.href = await getUrl(section + '/index');
}
}
</script>