mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-17 06:03:47 +00:00
fix: table scroll in column profile table (#10166)
This commit is contained in:
parent
0bea02c202
commit
e30786959b
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user