Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
  • Loading branch information
hassanad94 committed Nov 14, 2023
1 parent 7340b32 commit 67339d5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,17 +384,18 @@ export const VirtualizedTable = <T extends GenericContent = GenericContent>(prop
{({ height, width }) => (
<>
<Table
{...tableProps}
className={classes.root}
height={height}
width={width}
gridStyle={{
direction: 'inherit',
outline: 'none',
}}
rowClassName={getRowClassName}>
rowClassName={getRowClassName}
{...tableProps}>
{currentFieldsToDisplay.map((field) => {
const currentField = field.field

return (
<Column
flexGrow={props.displayRowCheckbox && field.field === 'Checkbox' ? 0 : 0}
Expand Down

0 comments on commit 67339d5

Please sign in to comment.