From eedd5200a4219f95f3f9317e035de9c3b29a3f55 Mon Sep 17 00:00:00 2001 From: Johannes <72809645+jobenjada@users.noreply.github.com> Date: Mon, 17 Nov 2025 00:39:40 -0800 Subject: [PATCH] fix: allow 1 option + other in select question (#6824) Co-authored-by: Dhruwang --- .../survey/editor/components/question-option-choice.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/modules/survey/editor/components/question-option-choice.tsx b/apps/web/modules/survey/editor/components/question-option-choice.tsx index e83a49743f..1774146ddd 100644 --- a/apps/web/modules/survey/editor/components/question-option-choice.tsx +++ b/apps/web/modules/survey/editor/components/question-option-choice.tsx @@ -92,7 +92,7 @@ export const QuestionOptionChoice = ({ const normalChoice = question.choices?.filter((c) => c.id !== "other" && c.id !== "none") || []; return ( -
+
{/* drag handle */}
@@ -167,7 +167,7 @@ export const QuestionOptionChoice = ({ )}
- {(normalChoice.length > 2 || isSpecialChoice) && ( + {(normalChoice.length > 1 || isSpecialChoice) && (