fix: CMD+F not working on screens with keyboard shortcut guide (#2066)

This commit is contained in:
Tom Moor
2021-04-23 12:10:02 -07:00
committed by GitHub
parent a818c7a924
commit eb6acdae20
8 changed files with 143 additions and 117 deletions

View File

@ -106,8 +106,9 @@ export type Props = {|
onChange?: (
ev: SyntheticInputEvent<HTMLInputElement | HTMLTextAreaElement>
) => mixed,
onFocus?: (ev: SyntheticEvent<>) => void,
onBlur?: (ev: SyntheticEvent<>) => void,
onKeyDown?: (ev: SyntheticKeyboardEvent<HTMLInputElement>) => mixed,
onFocus?: (ev: SyntheticEvent<>) => mixed,
onBlur?: (ev: SyntheticEvent<>) => mixed,
|};
@observer