Files
windmill/frontend/src/lib/components/apps/editor/settingsPanel/TableActionLabel.svelte
T

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}