From 2b9079f15cde6df5a7c4da00450481f76c7d4c63 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 32cdb96d..7ad9355e 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() {