Skip to content

Commit

Permalink
Merge pull request #984 from DTS-STN/update-datepicker
Browse files Browse the repository at this point in the history
fix: update button background and button type in dropdown
  • Loading branch information
shawn320 authored Aug 17, 2023
2 parents d972bc8 + 5fd889a commit f0778c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/CustomDropdown/CustomDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export const CustomDropdown = (props) => {
<button
onClick={() => handleOptionClick(option.value)}
className="dropdown-option"
style={{ backgroundColor: "#FFFFFF" }}
type="button"
>
{option.value}
</button>
Expand All @@ -115,6 +117,8 @@ export const CustomDropdown = (props) => {
<button
onClick={() => handleOptionClick(option.value)}
className="dropdown-option"
style={{ backgroundColor: "#FFFFFF" }}
type="button"
>
{option.value}
</button>
Expand Down

0 comments on commit f0778c1

Please sign in to comment.