Fix history for contentBlockLocator

This commit is contained in:
Ramon Wenger 2023-10-12 10:50:45 +02:00
parent 67c8511d50
commit 4a6b62d26b
1 changed files with 1 additions and 1 deletions

View File

@ -43,6 +43,6 @@ onResult(({ data }) => {
router.push({ name: 'not-found' }); router.push({ name: 'not-found' });
return; return;
} }
router.push(`/${path}`); router.replace(`/${path}`);
}); });
</script> </script>