0
0
Fork 0

refs #6795 fix return

This commit is contained in:
Carlos Satorres 2024-02-13 11:51:59 +01:00
parent ab512e3b03
commit 409bb1a13e
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function stateColor(code) {
function navigate(event, id) { function navigate(event, id) {
if (event.ctrlKey || event.metaKey) if (event.ctrlKey || event.metaKey)
window.open(`${getApiUrl()}/#/claim/${id}/summary`); window.open(`${getApiUrl()}/#/claim/${id}/summary`);
else router.push({ path: `/claim/${id}` }); return router.push({ path: `/claim/${id}` });
} }
</script> </script>