fix: table scroll in column profile table (#10166)

This commit is contained in:
Shailesh Parmar 2023-02-09 23:50:52 +05:30 committed by GitHub
parent 0bea02c202
commit e30786959b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,6 +154,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
title: 'Tests',
dataIndex: 'testCount',
key: 'Tests',
fixed: 'right',
render: (_, record) => (
<Link
data-testid={`${record.name}-test-count`}
@ -172,6 +173,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
dataIndex: 'dataQualityTest',
key: 'dataQualityTest',
width: 120,
fixed: 'right',
render: (_, record) => {
const summary =
columnTestSummary?.[
@ -201,6 +203,7 @@ const ColumnProfileTable: FC<ColumnProfileTableProps> = ({
title: 'Actions',
dataIndex: 'actions',
key: 'actions',
fixed: 'right',
render: (_, record) => (
<Tooltip
placement="bottom"