From 745f36970c7fc065822443af3d8cd3d104659b0a Mon Sep 17 00:00:00 2001 From: Alfred Nutile Date: Wed, 29 May 2024 11:48:23 -0400 Subject: [PATCH] fix js bug --- .../js/Pages/Sources/EmailBoxSource/Create.vue | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/resources/js/Pages/Sources/EmailBoxSource/Create.vue b/resources/js/Pages/Sources/EmailBoxSource/Create.vue index 4c66f514..f3f67eac 100644 --- a/resources/js/Pages/Sources/EmailBoxSource/Create.vue +++ b/resources/js/Pages/Sources/EmailBoxSource/Create.vue @@ -27,11 +27,14 @@ const form = useForm({ title: '', details: '', recurring: 'not', - email_box: "Inbox", - host: "", - username: "", - password: "", - delete: false, + secrets: { + username: "bob@bobsburgers.com", + password: "password", + host: "mail.bobsburgers.com", + email_box: "Inbox", + port: 993, + delete: true, + }, active: true });