Skip to content

Commit

Permalink
Fix status clickable area (#2895)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored Nov 10, 2024
1 parent d29f27f commit b7a66c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/javascript/flavours/glitch/components/status.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,8 @@ class Status extends ImmutablePureComponent {
{(connectReply || connectUp || connectToRoot) && <div className={classNames('status__line', { 'status__line--full': connectReply, 'status__line--first': !status.get('in_reply_to_id') && !connectToRoot })} />}

{(!muted || !isCollapsed) && (
<header className='status__info'>
/* eslint-disable-next-line jsx-a11y/no-static-element-interactions */
<header onClick={this.parseClick} className='status__info'>
<StatusHeader
status={status}
friend={account}
Expand Down

0 comments on commit b7a66c6

Please sign in to comment.