Make conversation header draggable

This commit is contained in:
trevor-signal 2023-06-30 10:05:06 -04:00 committed by GitHub
parent 2930aa002a
commit c96565c4c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -749,13 +749,15 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
return ( return (
<div className="module-ConversationHeader__header"> <div className="module-ConversationHeader__header">
{avatar} {avatar}
<button <div>
type="button" <button
className="module-ConversationHeader__header--clickable" type="button"
onClick={onClick} className="module-ConversationHeader__header--clickable"
> onClick={onClick}
{contents} >
</button> {contents}
</button>
</div>
</div> </div>
); );
} }