1
0
Fork 0
mirror of synced 2024-06-28 19:10:33 +12:00

Merge pull request #1783 from Budibase/fix/martin-june-fixes

prevent portal link from navigating in builder preview
This commit is contained in:
Martin McKeaveney 2021-06-21 22:55:55 +01:00 committed by GitHub
commit 681d35d915

View file

@ -2,7 +2,7 @@
import { getContext } from "svelte"
import { Heading, Icon } from "@budibase/bbui"
const { styleable, linkable } = getContext("sdk")
const { styleable, linkable, builderStore } = getContext("sdk")
const component = getContext("component")
export let title
@ -41,6 +41,11 @@
const close = () => {
mobileOpen = false
}
const navigateToPortal = () => {
if ($builderStore.inBuilder) return
window.location.href = "/builder/apps"
}
</script>
<div class="layout layout--{typeClass}" use:styleable={$component.styles}>
@ -69,11 +74,7 @@
{/if}
</div>
<div class="portal">
<Icon
hoverable
name="Apps"
on:click={() => (window.location.href = "/builder/apps")}
/>
<Icon hoverable name="Apps" on:click={navigateToPortal} />
</div>
</div>
<div