Better property naming #5269
Unanswered
mohammadhosseinmoradi
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
By default filtering and sorting... is enable, its better instead of enableColumnFilter be disableColumnFilter
columnHelper.accessor("firstName", {
cell: (info) => info.getValue(),
enableColumnFilter: false,
}),
columnHelper.accessor("firstName", {
cell: (info) => info.getValue(),
disableColumnFilter,
}),
Beta Was this translation helpful? Give feedback.
All reactions