Skip to content

Commit

Permalink
fix: increase width of date dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
vilde-barth-adsk committed Nov 28, 2023
1 parent e6ab222 commit 61ad978
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/DateSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default function DateSelector(props: DateSelectorProps) {
<weave-select
value={month}
onChange={(event) => setMonth(parseInt((event as CustomEvent).detail.value, 10))}
style={{ width: "100px" }}
>
{/* // Luxon uses 1-indexed months, so we need to add 1 to the value */}
{MONTHS.map((name, value) => (
Expand Down

0 comments on commit 61ad978

Please sign in to comment.