Fix going full-screen when opening an external link in a modal

This commit is contained in:
Andrew Kingston 2021-08-03 12:22:06 +01:00
parent 2eba603ad8
commit e88e1da2af
1 changed files with 6 additions and 2 deletions

View File

@ -50,8 +50,12 @@
} }
const handleFullscreen = () => { const handleFullscreen = () => {
routeStore.actions.navigate($peekStore.url) if ($peekStore.external) {
handleCancel() window.location = $peekStore.href
} else {
routeStore.actions.navigate($peekStore.url)
handleCancel()
}
} }
$: { $: {