We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27114fd commit bebb720Copy full SHA for bebb720
src/pages/tools/keyboard-visualizer/index.tsx
@@ -20,7 +20,13 @@ function MapManager({
20
}): JSX.Element {
21
return (
22
<div className={styles.mapManager}>
23
- <button className={styles.mapButton} type="button">
+ <button
24
+ className={styles.mapButton}
25
+ type="button"
26
+ onClick={(e) => {
27
+ // Safari does not focus buttons on click
28
+ (e.target as HTMLElement).focus();
29
+ }}>
30
{currentMap ?? "Select a map..."}
31
</button>
32
<div className={styles.mapListContainer}>
0 commit comments