diff --git a/core/src/components/radio-group/radio-group.tsx b/core/src/components/radio-group/radio-group.tsx index 9c5febc30a4..3564bc3eda9 100644 --- a/core/src/components/radio-group/radio-group.tsx +++ b/core/src/components/radio-group/radio-group.tsx @@ -83,8 +83,14 @@ export class RadioGroup implements ComponentInterface { } private async updateRadios() { - const { value } = this; + /** + * Make sure we get all radios first + * so values are up to date prior + * to caching the radio group value + */ const radios = await this.getRadios(); + const { value } = this; + let hasChecked = false; // Walk the DOM in reverse order, since the last selected one wins!