Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Fix: blur click conflict on name and chevron click #585

Merged
merged 1 commit into from
Jul 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/Header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function Header({
</div>
<div
className={style.accountMenu}
onClick={() => setShowAccountDropdown(!showAccountDropdown)}
onMouseDown={() => setShowAccountDropdown(!showAccountDropdown)}
>
{user.nickname}
{organization ? <>&nbsp;({organization.name})</> : ""}
Expand Down