Skip to content

Commit

Permalink
Merge pull request #376 from shesha-io/f/49048
Browse files Browse the repository at this point in the history
BUG 49048: On the "add Inline row " the columns are misaligned when a…
  • Loading branch information
IvanIlyichev committed Jul 24, 2023
2 parents e84b27c + b867b0d commit 58110ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const NewTableRowEditor: FC<INewRowEditorProps> = (props) => {
className='tr tr-body'
{...headerGroupProps}
>
{columns.map((column, index) => {
{columns.filter(c => c.isVisible).map((column, index) => {
return <NewRowCell key={index} column={column} />;
})}
</div>
Expand Down

0 comments on commit 58110ee

Please sign in to comment.