Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nicolas Frandeboeuf
kresus
Commits
76f4035a
Commit
76f4035a
authored
Jun 20, 2017
by
Nicolas Frandeboeuf
Browse files
Fix hover on account in the menu
parent
52edb10b
Pipeline
#17406
passed with stage
in 3 minutes and 23 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
client/components/menu/account.js
View file @
76f4035a
...
...
@@ -13,18 +13,16 @@ const AccountListItem = props => {
return
(
<
li
key
=
{
`account-details-account-list-item-
${
account
.
id
}
`
}
>
<
div
>
<
NavLink
to
=
{
newPathname
}
activeClassName
=
"
active
"
>
<
span
>
{
account
.
title
}
<
/span
>
<
span
className
=
{
`amount
${
color
}
`
}
>
{
account
.
formatCurrency
(
parseFloat
(
total
.
toFixed
(
2
)))
}
<
/span
>
<
/NavLink
>
<
/div
>
<
NavLink
to
=
{
newPathname
}
activeClassName
=
"
active
"
>
<
span
>
{
account
.
title
}
<
/span
>
<
span
className
=
{
`amount
${
color
}
`
}
>
{
account
.
formatCurrency
(
parseFloat
(
total
.
toFixed
(
2
)))
}
<
/span
>
<
/NavLink
>
<
/li
>
);
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment