tidy up
This commit is contained in:
parent
c70d4444a9
commit
562b0cc40a
|
@ -1,12 +1,10 @@
|
||||||
<script>
|
<script>
|
||||||
import { url } from "@roxi/routify"
|
import { goto } from "@roxi/routify"
|
||||||
import { Link } from "@budibase/bbui"
|
|
||||||
import { roles } from "stores/backend"
|
|
||||||
|
|
||||||
export let value
|
export let value
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Link quiet href={$url(`./${value}`)}><span>{value}</span></Link>
|
<span on:click={() => $goto(`./${value}`)}>{value}</span>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
span {
|
span {
|
||||||
|
|
|
@ -123,6 +123,8 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
margin-bottom: var(--spacing-l);
|
||||||
|
margin-top: var(--spacing-l);
|
||||||
}
|
}
|
||||||
|
|
||||||
.preview {
|
.preview {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const { string, number } = require("../questions")
|
const { number } = require("../questions")
|
||||||
const { success } = require("../utils")
|
const { success } = require("../utils")
|
||||||
const fs = require("fs")
|
const fs = require("fs")
|
||||||
const path = require("path")
|
const path = require("path")
|
||||||
|
|
Loading…
Reference in New Issue