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

Commit ad8501f

Browse files
committedJul 22, 2020
#55 - Provide tooltips for the three tabs
1 parent 876bf03 commit ad8501f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎client/src/components/Header/index.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,18 +119,21 @@ export default function Header({
119119
currentTab === TABS.SEARCH ? style.current : ""
120120
}`}
121121
onClick={() => onTabChange(TABS.SEARCH)}
122+
title="Search Profiles"
122123
/>
123124
<GroupsTabIcon
124125
className={`${style.menuIcon} ${
125126
currentTab === TABS.GROUPS ? style.current : ""
126127
}`}
127128
onClick={() => onTabChange(TABS.GROUPS)}
129+
title="Groups"
128130
/>
129131
<UploadsTabIcon
130132
className={`${style.menuIcon} ${
131133
currentTab === TABS.UPLOADS ? style.current : ""
132134
}`}
133135
onClick={() => onTabChange(TABS.UPLOADS)}
136+
title="Data Import"
134137
/>
135138
</div>
136139
</div>

0 commit comments

Comments
 (0)
This repository has been archived.