diff --git a/dashboard/src/components/EditableField.vue b/dashboard/src/components/EditableField.vue index e497468ed..676d62021 100644 --- a/dashboard/src/components/EditableField.vue +++ b/dashboard/src/components/EditableField.vue @@ -5,9 +5,11 @@ import { Button, FormGroup, TextInput } from '@cloudron/pankow'; const props = defineProps({ label: { type: String, required: true }, + helpUrl: { type: String, required: false }, value: { type: String, required: true }, disabled: { type: Boolean, default: false }, - saving: { type: Boolean, default: false } + saving: { type: Boolean, default: false }, + multiline: { type: Boolean, default: false }, }); const emit = defineEmits(['save']); @@ -47,9 +49,10 @@ function cancel() {