mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-08 19:29:40 -05:00
fix: Shuffled choices issue (#2639)
This commit is contained in:
committed by
GitHub
parent
e539ac82f3
commit
afdcac2465
+2
-1
@@ -55,9 +55,10 @@ export const SelectQuestionChoice = ({
|
||||
surveyLanguageCodes,
|
||||
updateQuestion,
|
||||
}: ChoiceProps) => {
|
||||
const isDragDisabled = choice.id === "other";
|
||||
const { attributes, listeners, setNodeRef, transform, transition } = useSortable({
|
||||
id: choice.id,
|
||||
disabled: choice.id === "other",
|
||||
disabled: isDragDisabled,
|
||||
});
|
||||
|
||||
const style = {
|
||||
|
||||
Reference in New Issue
Block a user