Skip to content

Commit

Permalink
Fixing files/types path and added disabled cell class for theme
Browse files Browse the repository at this point in the history
Re-organized cell classes on the renderer
  • Loading branch information
underfisk committed Oct 5, 2020
1 parent 0dd6560 commit 95c9d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/GridWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ const GridWrapper = forwardRef((props: GridWrapperProps, componentRef: React.Ref
)

const renderCell = useCallback(
;({ style, cell, ref, rowIndex, columnIndex }) => {
({ style, cell, ref, rowIndex, columnIndex }) => {
const { children } = cell
const isSelected = rowIndex === props.coords.rowIndex && columnIndex === props.coords.colIndex
const navigationDisabled = props.headers[0][columnIndex]?.disableNavigation
Expand Down

0 comments on commit 95c9d99

Please sign in to comment.