From c435fb61f425e2a300b5b1f2c1b6d36a966486b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20S=C3=A1ros?= Date: Wed, 13 Nov 2024 16:27:32 +0100 Subject: [PATCH] fix(ui-color-picker): make ColorPicker tooltip VoiceOver focusable Closes: INSTUI-4259 --- packages/ui-color-picker/src/ColorPicker/index.tsx | 2 +- packages/ui-svg-images/src/InlineSVG/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui-color-picker/src/ColorPicker/index.tsx b/packages/ui-color-picker/src/ColorPicker/index.tsx index 55cbfb2872..3cf3c41d00 100644 --- a/packages/ui-color-picker/src/ColorPicker/index.tsx +++ b/packages/ui-color-picker/src/ColorPicker/index.tsx @@ -390,7 +390,7 @@ class ColorPicker extends Component { {label} - + diff --git a/packages/ui-svg-images/src/InlineSVG/index.tsx b/packages/ui-svg-images/src/InlineSVG/index.tsx index c889436ee9..6b21220ba9 100644 --- a/packages/ui-svg-images/src/InlineSVG/index.tsx +++ b/packages/ui-svg-images/src/InlineSVG/index.tsx @@ -163,7 +163,6 @@ class InlineSVG extends Component { return ( { height={height} aria-hidden={title ? undefined : 'true'} aria-labelledby={this.labelledBy} + {...omitProps(this.props, InlineSVG.allowedProps, ['inline'])} role={this.role} focusable={focusable ? 'true' : 'false'} css={styles?.inlineSVG}