keevo-components 1.5.83 → 1.5.85
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.
|
@@ -874,7 +874,7 @@ class RadioGroupComponent extends BaseComponentInput {
|
|
|
874
874
|
}
|
|
875
875
|
selectedDefault() {
|
|
876
876
|
if (this.optionValueDefault != undefined && !this.selectedOpt) {
|
|
877
|
-
let item = this.options
|
|
877
|
+
let item = this.options.find(opt => opt.id === this.optionValueDefault);
|
|
878
878
|
if (item)
|
|
879
879
|
this.selectedOpt = item;
|
|
880
880
|
}
|