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

View File

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