File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/custom-select-control-v2 Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 25
25
- ` Tabs ` : improve controlled mode focus handling and keyboard navigation ([ #57696 ] ( https://github.com/WordPress/gutenberg/pull/57696 ) ).
26
26
- ` Tabs ` : prevent internal focus from updating too early ([ #58625 ] ( https://github.com/WordPress/gutenberg/pull/58625 ) ).
27
27
- Expand theming support in the ` COLORS ` variable object ([ #58097 ] ( https://github.com/WordPress/gutenberg/pull/58097 ) ).
28
+ - ` CustomSelect ` : disable ` virtualFocus ` to fix issue for screenreaders ([ #58585 ] ( https://github.com/WordPress/gutenberg/pull/58585 ) )
28
29
29
30
### Enhancements
30
31
Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ export function CustomSelect( {
56
56
setValue : ( nextValue ) => onChange ?.( nextValue ) ,
57
57
defaultValue,
58
58
value,
59
+ // fix for Safari bug: https://github.com/WordPress/gutenberg/issues/55023#issuecomment-1834035917
60
+ virtualFocus : false ,
59
61
} ) ;
60
62
61
63
const { value : currentValue } = store . useState ( ) ;
You can’t perform that action at this time.
0 commit comments