diff --git a/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/DataInsightSummary.tsx b/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/DataInsightSummary.tsx index af426ebe42f..12d3bdfb9ec 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/DataInsightSummary.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/DataInsightSummary.tsx @@ -233,6 +233,7 @@ const DataInsightSummary: FC = ({ chartFilter, onScrollToChart }) => { {/* summary of most active user */} {mostActiveUser?.userName && ( diff --git a/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/data-insight-detail.less b/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/data-insight-detail.less index 4655410c200..aa10b73755f 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/data-insight-detail.less +++ b/openmetadata-ui/src/main/resources/ui/src/components/DataInsight/data-insight-detail.less @@ -40,6 +40,9 @@ } } +.data-insight-active-user .summary-card .ant-space-item { + max-width: 100%; +} .ant-typography.data-insight-label-text { color: @label-color; } diff --git a/openmetadata-ui/src/main/resources/ui/src/components/common/SummaryCard/SummaryCard.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/common/SummaryCard/SummaryCard.component.tsx index 030f6d3cd97..56c6f62ddd5 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/common/SummaryCard/SummaryCard.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/common/SummaryCard/SummaryCard.component.tsx @@ -50,7 +50,7 @@ export const SummaryCard = ({ } return ( -
)} -
+ ); };