master-control 0.4.30 → 0.4.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4700,6 +4700,9 @@ class MedialQuestionsComponent {
|
|
|
4700
4700
|
let configData = !this.checkIfValueIsEmpty(this.field()?.configData)
|
|
4701
4701
|
? this.field()?.configData
|
|
4702
4702
|
: {};
|
|
4703
|
+
if (!this.checkIfValueIsEmpty(questionObj['configData'])) {
|
|
4704
|
+
configData = { ...configData, ...questionObj['configData'] };
|
|
4705
|
+
}
|
|
4703
4706
|
if (questionObj['questionType'] === 'RADIO BUTTON' || questionObj['questionType'] === 'ADDMORE') {
|
|
4704
4707
|
controlStyle = {
|
|
4705
4708
|
"controlType": "radio",
|