1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

remove unused code in integration components

This commit is contained in:
Keviin Åberg Kultalahti 2021-03-01 17:42:34 +01:00
parent bae1a11c32
commit 51b0656ba9
2 changed files with 0 additions and 11 deletions

View file

@ -3,7 +3,6 @@
import { Label, Spacer } from "@budibase/bbui"
import { onMount, createEventDispatcher } from "svelte"
import { themeStore } from "builderStore"
import { handlebarsCompletions } from "constants/completions"
const dispatch = createEventDispatcher()
@ -21,13 +20,6 @@
export let editorHeight = 500
// export let parameters = []
let completions = handlebarsCompletions()
// $: completions = parameters.map(param => ({
// text: `{{ ${param.name} }}`,
// displayText: param.name,
// }))
let width
let height

View file

@ -7,9 +7,6 @@
export let schema
export let editable
let draftField = {}
$: fieldKeys = Object.keys(fields)
$: schemaKeys = Object.keys(schema.fields)
function updateCustomFields({ detail }) {