mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Use shallow routing for website details.
This commit is contained in:
parent
cb3895e565
commit
05245ca316
3 changed files with 5 additions and 4 deletions
|
|
@ -17,9 +17,9 @@ export default function MenuLayout({
|
|||
|
||||
function handleSelect(url) {
|
||||
if (replace) {
|
||||
router.replace(url);
|
||||
router.replace(url, undefined, { shallow: true });
|
||||
} else {
|
||||
router.push(url);
|
||||
router.push(url, undefined, { shallow: true });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue