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 3ee0e84 commit 9c2ccbfCopy full SHA for 9c2ccbf
packages/ui/src/elements/Table/DefaultCell/index.tsx
@@ -43,7 +43,7 @@ export const DefaultCell: React.FC<CellComponentProps> = (props) => {
43
onClick: onClickFromContext,
44
} = cellProps || {}
45
46
- const classNameFromConfigContext = 'className' in admin ? admin.className : undefined
+ const classNameFromConfigContext = admin && 'className' in admin ? admin.className : undefined
47
48
const className =
49
classNameFromProps ||
0 commit comments