mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 19:48:17 +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(
|
||||
() => getEntityExtraInfoLength(extraInfo) <= 1,
|
||||
[extraInfo]
|
||||
() =>
|
||||
entityType === EntityType.METRIC
|
||||
? false
|
||||
: getEntityExtraInfoLength(extraInfo) <= 1,
|
||||
[extraInfo, entityType]
|
||||
);
|
||||
|
||||
const handleOpenTaskClick = () => {
|
||||
|
||||
@ -94,7 +94,7 @@
|
||||
|
||||
@keyframes scrollInWithAlert {
|
||||
to {
|
||||
bottom: 160px;
|
||||
bottom: 170px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user