From 2c4049d9801f25d6ad7797276850acc7bd1ed25c Mon Sep 17 00:00:00 2001 From: "Grigorii K. Shartsev" Date: Thu, 20 Jun 2024 12:37:54 +0200 Subject: [PATCH] fix(GuestForm): allow to create a guest without name twice Signed-off-by: Grigorii K. Shartsev --- src/views/GuestForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/GuestForm.vue b/src/views/GuestForm.vue index 4870f5ea..3d1807ac 100644 --- a/src/views/GuestForm.vue +++ b/src/views/GuestForm.vue @@ -263,7 +263,7 @@ export default { }, resetForm() { - this.guest.fullName = this.guest.username = this.guest.email = null + this.guest.fullName = this.guest.username = this.guest.email = '' }, resetErrors() {