mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-26 01:15:08 +00:00
fixed unaligned charts (#22165)
Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
This commit is contained in:
parent
718642541c
commit
2177bc2e03
@ -233,6 +233,7 @@ const DataInsightSummary: FC<Props> = ({ chartFilter, onScrollToChart }) => {
|
||||
{/* summary of most active user */}
|
||||
{mostActiveUser?.userName && (
|
||||
<Col
|
||||
className="data-insight-active-user"
|
||||
data-testid={`summary-item-${DataInsightChartType.MostActiveUsers}`}
|
||||
key={DataInsightChartType.MostActiveUsers}
|
||||
span={6}>
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ export const SummaryCard = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<div
|
||||
<Space
|
||||
className={classNames('summary-card', cardBackgroundClass, className)}
|
||||
data-testid="summary-card-container">
|
||||
<div
|
||||
@ -81,6 +81,6 @@ export const SummaryCard = ({
|
||||
width={65}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
</Space>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user