Skip to content

Commit

Permalink
Merge pull request #273 from quadratichq/jim-fix-goto-onclick
Browse files Browse the repository at this point in the history
fix: goto list item click
  • Loading branch information
davidkircos authored Feb 16, 2023
2 parents d497df3 + 0d6ff0a commit 0066f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/menus/GoTo/GoTo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const GoTo = (props: Props) => {

<List dense={true} disablePadding>
<ListItem disablePadding secondaryAction={<East fontSize="small" color="disabled" />}>
<ListItemButton selected onSelect={onSelect}>
<ListItemButton selected onClick={onSelect}>
<ListItemText
primary={`Go to ${coordinates.length === 1 ? 'cell' : 'range'}: ${coordinates
.map(({ x, y }) => `(${x}, ${y})`)
Expand Down

0 comments on commit 0066f1c

Please sign in to comment.