mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-07 14:31:08 +00:00
MINOR: fix the data asset header spacing in Metric entity (#21268)
* fix the data asset header spacing in Metric entity * fix the spacing between floating cards on homepage (cherry picked from commit 992d3f966407369cabba2271a749180d2c17b2b9)
This commit is contained in:
parent
0a2d9af34d
commit
50f526ca41
@ -310,8 +310,11 @@ export const DataAssetsHeader = ({
|
|||||||
);
|
);
|
||||||
|
|
||||||
const showCompressedExtraInfoItems = useMemo(
|
const showCompressedExtraInfoItems = useMemo(
|
||||||
() => getEntityExtraInfoLength(extraInfo) <= 1,
|
() =>
|
||||||
[extraInfo]
|
entityType === EntityType.METRIC
|
||||||
|
? false
|
||||||
|
: getEntityExtraInfoLength(extraInfo) <= 1,
|
||||||
|
[extraInfo, entityType]
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleOpenTaskClick = () => {
|
const handleOpenTaskClick = () => {
|
||||||
|
|||||||
@ -94,7 +94,7 @@
|
|||||||
|
|
||||||
@keyframes scrollInWithAlert {
|
@keyframes scrollInWithAlert {
|
||||||
to {
|
to {
|
||||||
bottom: 160px;
|
bottom: 170px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user