Skip to content

Commit

Permalink
Merge pull request #70 from ssciwr/bugfix
Browse files Browse the repository at this point in the history
fix bug in select with other: text input should initially be hidden
  • Loading branch information
lkeegan authored Jan 2, 2025
2 parents e8f38f2 + 01465eb commit b57fea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/SelectWithOther.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b57fea9

Please sign in to comment.