fix runform

This commit is contained in:
Ruben Fiszel
2022-09-25 18:11:00 +02:00
parent 04ab59f928
commit 639613bae5
+1 -1
View File
@@ -11,7 +11,7 @@
import Tooltip from './Tooltip.svelte'
import type { Schema } from '$lib/common'
export let runnable: { summary: string; schema: Schema; description: string }
export let runnable: { summary?: string; schema?: Schema; description?: string } | undefined
export let runAction: (scheduledForStr: string | undefined, args: Record<string, any>) => void
export let buttonText = 'Run'
export let schedulable = true