From 87bc7490404b0406b511833a85b686f1db791f66 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 9 Feb 2023 12:36:29 -0500 Subject: [PATCH] fix(checkbox, radio): label is announced once on ios (#26770) resolves #26769 --- core/src/components/checkbox/checkbox.tsx | 26 +++++++++++++---------- core/src/components/radio/radio.tsx | 20 ++++++++++------- 2 files changed, 27 insertions(+), 19 deletions(-) diff --git a/core/src/components/checkbox/checkbox.tsx b/core/src/components/checkbox/checkbox.tsx index 68391778a5..0e7e3c3c6a 100644 --- a/core/src/components/checkbox/checkbox.tsx +++ b/core/src/components/checkbox/checkbox.tsx @@ -247,6 +247,21 @@ export class Checkbox implements ComponentInterface { })} > ); diff --git a/core/src/components/radio/radio.tsx b/core/src/components/radio/radio.tsx index ca553de434..a8c1878ee5 100644 --- a/core/src/components/radio/radio.tsx +++ b/core/src/components/radio/radio.tsx @@ -234,6 +234,18 @@ export class Radio implements ComponentInterface { })} > );