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

Commit abbfa14

Browse files
committed
fix issue #65
1 parent 9547065 commit abbfa14

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

client/src/components/Header/index.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import { clearOrg } from "../../services/user-org";
1212

1313
import style from "./style.module.scss";
1414
import logo from "../../assets/images/u-bahn-logo.svg";
15+
import iconStyles from "../../styles/icons.module.css";
1516

1617
export const TABS = {
1718
GROUPS: "GROUPS",
@@ -94,7 +95,11 @@ export default function Header({
9495
>
9596
{user.nickname}
9697
{organization ? <>&nbsp;({organization.name})</> : ""}
97-
<DownArrow className={style.downArrow} />
98+
{showAccountDropdown ? (
99+
<div className={iconStyles.chevronUpG}></div>
100+
) : (
101+
<div className={iconStyles.chevronDownG}></div>
102+
)}
98103
{showAccountDropdown && (
99104
<ul className={style.dropdown}>
100105
<li

0 commit comments

Comments
 (0)