From 15f159ee08d43fecabc0659b83ff24d5b3f87819 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Tue, 14 Jan 2025 09:00:26 +0000 Subject: [PATCH 01/13] fix bug with optional fields in custom forms --- admin_ui/src/components/NewForm.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/admin_ui/src/components/NewForm.vue b/admin_ui/src/components/NewForm.vue index 110a67b4..de3daeac 100644 --- a/admin_ui/src/components/NewForm.vue +++ b/admin_ui/src/components/NewForm.vue @@ -14,7 +14,7 @@ v-bind:timeResolution=" schema?.extra?.time_resolution[columnName] " - v-bind:format="property.format" + v-bind:format="getFormat(property)" /> @@ -23,7 +23,7 @@