mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-11 00:06:06 +00:00
14 lines
344 B
Svelte
14 lines
344 B
Svelte
<script lang="ts">
|
|
import InputValue from '../../components/helpers/InputValue.svelte'
|
|
import type { RichConfiguration } from '../../types'
|
|
|
|
export let componentInput: RichConfiguration | undefined
|
|
let label: string = ''
|
|
</script>
|
|
|
|
{#if componentInput !== undefined}
|
|
<InputValue input={componentInput} bind:value={label} />
|
|
{/if}
|
|
|
|
{label}
|