remove unused code in integration components
This commit is contained in:
parent
bae1a11c32
commit
51b0656ba9
|
@ -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
|
||||
|
||||
|
|
|
@ -7,9 +7,6 @@
|
|||
export let schema
|
||||
export let editable
|
||||
|
||||
let draftField = {}
|
||||
|
||||
$: fieldKeys = Object.keys(fields)
|
||||
$: schemaKeys = Object.keys(schema.fields)
|
||||
|
||||
function updateCustomFields({ detail }) {
|
||||
|
|
Loading…
Reference in New Issue