1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00
This commit is contained in:
Martin McKeaveney 2021-05-11 19:54:01 +01:00
parent c70d4444a9
commit 562b0cc40a
3 changed files with 5 additions and 5 deletions

View file

@ -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 {

View file

@ -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 {

View file

@ -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")