clear client name input on client create submit, fixes #189

This commit is contained in:
Gregor Vostrak
2024-09-25 14:51:25 +02:00
parent 876a41cb2a
commit 2dbde63043

View File

@@ -19,6 +19,7 @@ const client = ref<CreateClientBody>({
async function submit() {
await createClient(client.value);
client.value.name = '';
show.value = false;
}