mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 21:55:59 +00:00
filter multiple values dialog
This commit is contained in:
12
packages/web/src/forms/TextAreaField.svelte
Normal file
12
packages/web/src/forms/TextAreaField.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<script lang="ts">
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
export let value;
|
||||
export let focused;
|
||||
|
||||
let domEditor;
|
||||
|
||||
if (focused) onMount(() => domEditor.focus());
|
||||
</script>
|
||||
|
||||
<textarea {...$$restProps} bind:value on:change on:input bind:this={domEditor} />
|
||||
Reference in New Issue
Block a user