From 1eea93520749ac4fb4054004fc7ae01a02a05f68 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Fri, 19 Feb 2021 17:28:26 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fixed=20address=20removal=20bug?= =?UTF-8?q?=20ContactDetail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ref #72 --- src/components/contacts/ContactDetail.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/contacts/ContactDetail.svelte b/src/components/contacts/ContactDetail.svelte index 93b2489d..88297d03 100644 --- a/src/components/contacts/ContactDetail.svelte +++ b/src/components/contacts/ContactDetail.svelte @@ -64,7 +64,7 @@ }).showToast(); editable.address.country = "DE"; if (editable.address_checked === false) { - editable.address = {}; + editable.address = null; } if (editable.email) editable.email = editable.email; if (editable.phone) editable.phone = editable.phone;