feat: change hooks to textareas (#2522)

* hooks are now textareas

* remove newlines in client config
This commit is contained in:
Bernd Storath
2026-03-05 14:52:55 +01:00
committed by GitHub
parent bc4dfd03df
commit 8ea2b635c1
6 changed files with 62 additions and 13 deletions
+29
View File
@@ -0,0 +1,29 @@
<template>
<div class="flex items-center">
<FormLabel :for="id">
{{ label }}
</FormLabel>
<BaseTooltip v-if="description" :text="description">
<IconsInfo class="size-4" />
</BaseTooltip>
</div>
<BaseTextArea
:id="id"
v-model.trim="data"
:name="id"
:autocomplete="autocomplete"
:disabled="disabled"
/>
</template>
<script lang="ts" setup>
defineProps<{
id: string;
label: string;
description?: string;
autocomplete?: string;
disabled?: boolean;
}>();
const data = defineModel<string>();
</script>