Skip to content

Commit

Permalink
header: add an id to the username item
Browse files Browse the repository at this point in the history
So we can control it using CSS
  • Loading branch information
davidmurray authored and tahini committed Sep 22, 2023
1 parent 4dffddf commit be40f68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const User: React.FunctionComponent<UserProps & WithTranslation> = (props: UserP
const [display, setDisplay] = React.useState('none');
const wrapperRef = React.useRef(null);
return (
<li className="tr__top-menu-element" key={'item-nav-user'}>
<li className="tr__top-menu-element" key={'item-nav-user'} id="item-nav-user">
<button
className="menu-button"
type="button"
Expand Down

0 comments on commit be40f68

Please sign in to comment.