fix double page component issue in email section
This commit is contained in:
parent
3dc7ba268e
commit
ab56fceaae
|
@ -1,7 +1,7 @@
|
|||
<script>
|
||||
import { Page } from "@budibase/bbui"
|
||||
import { auth } from "stores/portal"
|
||||
import { redirect } from "@roxi/routify"
|
||||
import { page, redirect } from "@roxi/routify"
|
||||
|
||||
// Only admins allowed here
|
||||
$: {
|
||||
|
@ -9,8 +9,12 @@
|
|||
$redirect("../")
|
||||
}
|
||||
}
|
||||
|
||||
$: console.log($page)
|
||||
</script>
|
||||
|
||||
{#if $auth.isAdmin}
|
||||
<Page wide={$page.path.includes("email/:template")}>
|
||||
<slot />
|
||||
</Page>
|
||||
{/if}
|
||||
|
|
|
@ -69,7 +69,6 @@
|
|||
}
|
||||
</script>
|
||||
|
||||
<Page wide>
|
||||
<Layout gap="XS" noPadding>
|
||||
<div class="back">
|
||||
<ActionButton
|
||||
|
@ -133,7 +132,6 @@
|
|||
</div>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
</Page>
|
||||
|
||||
<style>
|
||||
.template-editor {
|
||||
|
|
|
@ -76,7 +76,6 @@
|
|||
fetchSmtp()
|
||||
</script>
|
||||
|
||||
<Page>
|
||||
<Layout>
|
||||
<Layout noPadding gap="XS">
|
||||
<Heading size="M">Email</Heading>
|
||||
|
@ -140,7 +139,6 @@
|
|||
/>
|
||||
{/if}
|
||||
</Layout>
|
||||
</Page>
|
||||
|
||||
<style>
|
||||
.form-row {
|
||||
|
|
Loading…
Reference in New Issue