Fix going full-screen when opening an external link in a modal
This commit is contained in:
parent
2eba603ad8
commit
e88e1da2af
|
@ -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()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$: {
|
$: {
|
||||||
|
|
Loading…
Reference in New Issue