Account: don't grow more than needed

environments/review-account-gr-j4ezu7/deployments/461
Alex Gleason 2 years ago
parent 82e437cdda
commit 01b3223886
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -159,7 +159,7 @@ const Account = ({
return ( return (
<div data-testid='account' className='flex-shrink-0 group block w-full' ref={overflowRef}> <div data-testid='account' className='flex-shrink-0 group block w-full' ref={overflowRef}>
<HStack alignItems={actionAlignment} justifyContent='between'> <HStack alignItems={actionAlignment} justifyContent='between'>
<HStack alignItems='center' space={3} grow> <HStack alignItems='center' space={3}>
<ProfilePopper <ProfilePopper
condition={showProfileHoverCard} condition={showProfileHoverCard}
wrapper={(children) => <HoverRefWrapper className='relative' accountId={account.id} inline>{children}</HoverRefWrapper>} wrapper={(children) => <HoverRefWrapper className='relative' accountId={account.id} inline>{children}</HoverRefWrapper>}

@ -474,18 +474,16 @@ class Status extends ImmutablePureComponent<IStatus, IStatusState> {
{reblogElementMobile} {reblogElementMobile}
<div className='mb-4'> <div className='mb-4'>
<HStack justifyContent='between' alignItems='start'> <AccountContainer
<AccountContainer key={String(status.getIn(['account', 'id']))}
key={String(status.getIn(['account', 'id']))} id={String(status.getIn(['account', 'id']))}
id={String(status.getIn(['account', 'id']))} timestamp={status.created_at}
timestamp={status.created_at} timestampUrl={statusUrl}
timestampUrl={statusUrl} action={reblogElement}
action={reblogElement} hideActions={!reblogElement}
hideActions={!reblogElement} showEdit={!!status.edited_at}
showEdit={!!status.edited_at} showProfileHoverCard={this.props.hoverable}
showProfileHoverCard={this.props.hoverable} />
/>
</HStack>
</div> </div>
<div className='status__content-wrapper'> <div className='status__content-wrapper'>

Loading…
Cancel
Save