Hi! When configuring a conditional question, the form builder lets you choose which specific option of the parent question must be selected for the conditional question to be displayed, but only when the parent question is of type multi Choice. When the parent question is of type multi checkbox, that option selector does not appear.
I think the problem may be the following but I am not sure: The dependency component in webapp/src/pages/createApplicationForm/components/util.js (lines 338–423) contains two explicit conditional branches based on the parent question's type (dependentQuestion.type), but there is no third branch for dependentQuestion.type === 'multi-checkbox'. As a result, when the parent question is of this type, none of the above conditions are met and the option-selector block is simply never rendered.
Hi! When configuring a conditional question, the form builder lets you choose which specific option of the parent question must be selected for the conditional question to be displayed, but only when the parent question is of type multi Choice. When the parent question is of type multi checkbox, that option selector does not appear.
I think the problem may be the following but I am not sure: The dependency component in webapp/src/pages/createApplicationForm/components/util.js (lines 338–423) contains two explicit conditional branches based on the parent question's type (dependentQuestion.type), but there is no third branch for dependentQuestion.type === 'multi-checkbox'. As a result, when the parent question is of this type, none of the above conditions are met and the option-selector block is simply never rendered.