feat(frontend): Close notification slider over on click, fix types, delete dead code

This commit is contained in:
2025-10-04 08:17:22 +02:00
parent 03f3369cd7
commit 80592167c8
4 changed files with 14 additions and 13 deletions

View File

@@ -40,7 +40,6 @@
v-model="currentFormElementSection.formElements"
:application-form-id="applicationForm.id"
:disabled="isReadOnly"
@click:comments="openComments"
/>
<div class="flex gap-2 justify-between mt-4">
<UButton
@@ -160,8 +159,4 @@ async function onSubmit() {
toast.add({ title: 'Success', description: 'Application form submitted', color: 'success' })
}
}
function openComments(formElementId: string) {
console.log('open comments for', formElementId)
}
</script>