Skip to content

Commit

Permalink
Merge pull request #316 from ducku/region-dropdown
Browse files Browse the repository at this point in the history
Fix Region Dropdown and Overlapping Issues
  • Loading branch information
adamnovak authored Jul 31, 2023
2 parents e98ae5b + 718920b commit e49eebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/RegionInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const RegionInput = ({
value={region}
inputValue={region}
data-testid="autocomplete"
id="regionInput"
id="regionInput"

onInputChange={(event, newInputValue) => {
// If an option is selected, should have a match in optionToTrack
Expand All @@ -70,7 +70,6 @@ export const RegionInput = ({
<TextField
{...params}
label="Region"
style={{zIndex:'-100'}}
name="Region Input"
inputProps={{
...params.inputProps,
Expand Down
1 change: 1 addition & 0 deletions src/components/SelectionDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export class SelectionDropdown extends Component {
...base,
width: "max-content",
minWidth: "100%",
zIndex: 999,
}),
};

Expand Down

0 comments on commit e49eebf

Please sign in to comment.