Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoelbert committed Mar 18, 2024
1 parent 2bf9f09 commit 6efafa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/cells/number-cell.tsx
Expand Up @@ -12,7 +12,7 @@ const NumberOverlayEditor = React.lazy(
export const numberCellRenderer: InternalCellRenderer<NumberCell> = {
getAccessibilityString: c => c.data?.toString() ?? "",
kind: GridCellKind.Number,
needsHover: textCell => textCell.hoverEffect === true,
needsHover: cell => cell.hoverEffect === true,
needsHoverPosition: false,
useLabel: true,
drawPrep: prepTextCell,
Expand Down

0 comments on commit 6efafa4

Please sign in to comment.