Skip to content

Commit 145bb88

Browse files
committed
fix: hover color removed when filter buttons are clicked
1 parent 025edf7 commit 145bb88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/discussions/learners/learner/LearnerFilterBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const ActionItem = ({
2323
}) => (
2424
<label
2525
htmlFor={id}
26-
className="focus border-bottom-0 d-flex align-items-center w-100 py-2 m-0 font-weight-500 filter-menu"
26+
className="focus border-bottom-0 d-flex align-items-center w-100 py-2 m-0 font-weight-500"
2727
data-testid={value === selected ? `${value} selected` : null}
2828
style={{ cursor: 'pointer' }}
2929
aria-checked={value === selected}

src/discussions/posts/post-filter-bar/PostFilterBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const ActionItem = ({
3737
}) => (
3838
<label
3939
htmlFor={id}
40-
className="focus border-bottom-0 d-flex align-items-center w-100 py-2 m-0 font-weight-500 filter-menu"
40+
className="focus border-bottom-0 d-flex align-items-center w-100 py-2 m-0 font-weight-500"
4141
data-testid={value === selected ? 'selected' : null}
4242
style={{ cursor: 'pointer' }}
4343
aria-checked={value === selected}

0 commit comments

Comments
 (0)