From 01465eb8b7bb580df726509afbb5855a7e8326bf Mon Sep 17 00:00:00 2001 From: Liam Keegan Date: Thu, 2 Jan 2025 16:18:11 +0100 Subject: [PATCH] fix bug in select with other: text input should initially be hidden --- frontend/src/components/SelectWithOther.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/SelectWithOther.vue b/frontend/src/components/SelectWithOther.vue index 4dc0343..282fd2e 100644 --- a/frontend/src/components/SelectWithOther.vue +++ b/frontend/src/components/SelectWithOther.vue @@ -5,7 +5,7 @@ const model = defineModel(); const otherText = "Other (please specify)"; const textInput = ref(""); const selectInput = ref(""); -const showTextInput = ref(true); +const showTextInput = ref(false); type OptionsType = { name: string;