mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-22 07:58:06 +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 (
|
||||
<div
|
||||
className={classNames(
|
||||
className,
|
||||
'hover:tw-bg-gray-100 tw-p-2 tw-pb-1 tw-mb-1',
|
||||
{
|
||||
'tw-bg-gray-100': visible,
|
||||
}
|
||||
)}>
|
||||
className={classNames(className, 'hover:tw-bg-gray-100', {
|
||||
'tw-bg-gray-100': visible,
|
||||
})}>
|
||||
<Popover
|
||||
destroyTooltipOnHide
|
||||
align={{ targetOffset: [0, -35] }}
|
||||
@ -151,7 +147,7 @@ const ActivityFeedCard: FC<ActivityFeedCardProp> = ({
|
||||
visible={visible}
|
||||
zIndex={9999}
|
||||
onVisibleChange={handleVisibleChange}>
|
||||
<div className="tw-flex">
|
||||
<div className="tw-flex tw-p-2 tw-mb-1">
|
||||
<UserPopOverCard userName={feedDetail.from}>
|
||||
<span className="tw-cursor-pointer" data-testid="authorAvatar">
|
||||
<ProfilePicture id="" name={feedDetail.from} width="32" />
|
||||
|
@ -172,7 +172,7 @@ const FeedCardHeader: FC<FeedHeaderProp> = ({
|
||||
<Link data-testid="entitylink" to={prepareFeedLink()}>
|
||||
<button disabled={AppState.isTourOpen}>
|
||||
<Ellipses
|
||||
className="tw-w-auto tw-text-left"
|
||||
className="tw-w-28 tw-text-left"
|
||||
rows={1}
|
||||
style={{
|
||||
color: 'rgb(24, 144, 255)',
|
||||
|
@ -608,18 +608,19 @@ const Users = ({
|
||||
height="150px"
|
||||
referrerPolicy="no-referrer"
|
||||
src={userData.profile?.images?.image}
|
||||
width="300px"
|
||||
/>
|
||||
</div>
|
||||
) : (
|
||||
<ProfilePicture
|
||||
displayName={userData?.displayName || userData.name}
|
||||
height="150"
|
||||
id={userData?.id || ''}
|
||||
name={userData?.name || ''}
|
||||
textClass="tw-text-5xl"
|
||||
width="300"
|
||||
/>
|
||||
<div style={{ width: 'inherit' }}>
|
||||
<ProfilePicture
|
||||
displayName={userData?.displayName || userData.name}
|
||||
height="150"
|
||||
id={userData?.id || ''}
|
||||
name={userData?.name || ''}
|
||||
textClass="tw-text-5xl"
|
||||
width=""
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
{getDisplayNameComponent()}
|
||||
<p className="tw-mt-2 tw-mx-3">{userData.email}</p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user