feat(app-widget): multiline description (#3873)

This commit is contained in:
Meier Lukas
2025-08-16 23:39:20 +02:00
committed by GitHub
parent a88f1c3cba
commit 950636e81d
3 changed files with 21 additions and 4 deletions

View File

@@ -97,7 +97,13 @@ export const AppForm = ({
<Stack>
<TextInput {...form.getInputProps("name")} withAsterisk label={t("app.field.name.label")} />
<IconPicker {...form.getInputProps("iconUrl")} />
<Textarea {...form.getInputProps("description")} label={t("app.field.description.label")} />
<Textarea
{...form.getInputProps("description")}
label={t("app.field.description.label")}
autosize
minRows={2}
resize="vertical"
/>
<TextInput {...form.getInputProps("href")} label={t("app.field.url.label")} />
<Checkbox