mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-23 08:28:10 +00:00
My data hover issue fixed. (#5708)
* [issues-5697] made All Entities as the default visible option and minor css fix * file added. * test fix * unit test fixed. * minor css fix * minor css fix * user profile image issue fixed
This commit is contained in:
parent
ea35d77b52
commit
cc4a74708f
@ -121,13 +121,9 @@ const ActivityFeedCard: FC<ActivityFeedCardProp> = ({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={classNames(
|
className={classNames(className, 'hover:tw-bg-gray-100', {
|
||||||
className,
|
|
||||||
'hover:tw-bg-gray-100 tw-p-2 tw-pb-1 tw-mb-1',
|
|
||||||
{
|
|
||||||
'tw-bg-gray-100': visible,
|
'tw-bg-gray-100': visible,
|
||||||
}
|
})}>
|
||||||
)}>
|
|
||||||
<Popover
|
<Popover
|
||||||
destroyTooltipOnHide
|
destroyTooltipOnHide
|
||||||
align={{ targetOffset: [0, -35] }}
|
align={{ targetOffset: [0, -35] }}
|
||||||
@ -151,7 +147,7 @@ const ActivityFeedCard: FC<ActivityFeedCardProp> = ({
|
|||||||
visible={visible}
|
visible={visible}
|
||||||
zIndex={9999}
|
zIndex={9999}
|
||||||
onVisibleChange={handleVisibleChange}>
|
onVisibleChange={handleVisibleChange}>
|
||||||
<div className="tw-flex">
|
<div className="tw-flex tw-p-2 tw-mb-1">
|
||||||
<UserPopOverCard userName={feedDetail.from}>
|
<UserPopOverCard userName={feedDetail.from}>
|
||||||
<span className="tw-cursor-pointer" data-testid="authorAvatar">
|
<span className="tw-cursor-pointer" data-testid="authorAvatar">
|
||||||
<ProfilePicture id="" name={feedDetail.from} width="32" />
|
<ProfilePicture id="" name={feedDetail.from} width="32" />
|
||||||
|
@ -172,7 +172,7 @@ const FeedCardHeader: FC<FeedHeaderProp> = ({
|
|||||||
<Link data-testid="entitylink" to={prepareFeedLink()}>
|
<Link data-testid="entitylink" to={prepareFeedLink()}>
|
||||||
<button disabled={AppState.isTourOpen}>
|
<button disabled={AppState.isTourOpen}>
|
||||||
<Ellipses
|
<Ellipses
|
||||||
className="tw-w-auto tw-text-left"
|
className="tw-w-28 tw-text-left"
|
||||||
rows={1}
|
rows={1}
|
||||||
style={{
|
style={{
|
||||||
color: 'rgb(24, 144, 255)',
|
color: 'rgb(24, 144, 255)',
|
||||||
|
@ -608,18 +608,19 @@ const Users = ({
|
|||||||
height="150px"
|
height="150px"
|
||||||
referrerPolicy="no-referrer"
|
referrerPolicy="no-referrer"
|
||||||
src={userData.profile?.images?.image}
|
src={userData.profile?.images?.image}
|
||||||
width="300px"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
|
<div style={{ width: 'inherit' }}>
|
||||||
<ProfilePicture
|
<ProfilePicture
|
||||||
displayName={userData?.displayName || userData.name}
|
displayName={userData?.displayName || userData.name}
|
||||||
height="150"
|
height="150"
|
||||||
id={userData?.id || ''}
|
id={userData?.id || ''}
|
||||||
name={userData?.name || ''}
|
name={userData?.name || ''}
|
||||||
textClass="tw-text-5xl"
|
textClass="tw-text-5xl"
|
||||||
width="300"
|
width=""
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
{getDisplayNameComponent()}
|
{getDisplayNameComponent()}
|
||||||
<p className="tw-mt-2 tw-mx-3">{userData.email}</p>
|
<p className="tw-mt-2 tw-mx-3">{userData.email}</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user