Fixed display of dropdown and defaultValue

This commit is contained in:
Justin Edmund 2022-12-22 23:34:32 -08:00
parent 653dd3d493
commit 2a87ad0701
2 changed files with 10 additions and 1 deletions

View file

@ -40,7 +40,8 @@ const JobSkillSearchFilterBar = (props: Props) => {
return (
<div className="SearchFilterBar">
<Select
defaultValue={-1}
defaultValue="-1"
triggerClass="Bound"
trigger={'All elements'}
open={open}
onChange={onChange}

View file

@ -22,6 +22,14 @@
text-align: left;
}
&.Bound {
background-color: var(--select-contained-bg);
&:hover {
background-color: var(--select-contained-bg-hover);
}
}
.SelectIcon {
display: flex;
align-items: center;