Add heading
This commit is contained in:
parent
6795cb15e8
commit
e260a64388
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { Layout, Body, Button } from "@budibase/bbui"
|
import { Layout, Heading, Body, Button } from "@budibase/bbui"
|
||||||
import { downloadStream } from "@budibase/frontend-core"
|
import { downloadStream } from "@budibase/frontend-core"
|
||||||
import Spinner from "components/common/Spinner.svelte"
|
import Spinner from "components/common/Spinner.svelte"
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Layout noPadding>
|
<Layout noPadding>
|
||||||
|
<Heading>System logs</Heading>
|
||||||
<Body>Download your latest logs to share with the Budibase team</Body>
|
<Body>Download your latest logs to share with the Budibase team</Body>
|
||||||
<div class="download-button">
|
<div class="download-button">
|
||||||
<Button cta on:click={download} disabled={loading}>
|
<Button cta on:click={download} disabled={loading}>
|
||||||
|
@ -25,7 +26,7 @@
|
||||||
{#if loading}
|
{#if loading}
|
||||||
<Spinner size="10" />
|
<Spinner size="10" />
|
||||||
{/if}
|
{/if}
|
||||||
Download system logs
|
Download
|
||||||
</div>
|
</div>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue