Skip to content

Commit

Permalink
fix: Add year and month picker (TT-1707-fix) (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusLevang authored Sep 6, 2024
1 parent 92ffd07 commit 7728a3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/BoxRegistrationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ const BoxRegistrationModal: FC<BoxRegistrationModalProps> = (props: BoxRegistrat

<label className="block text-gray-700 text-lg font-bold mb-1" htmlFor="startDate">Fra dato</label>
<Calendar
showMonthAndYearPickers
aria-label='startDate'
value={dateToCalendarDate(values.startDate)}
onChange={val => void setFieldValue('startDate', val.toDate('UTC'))}
Expand Down
1 change: 1 addition & 0 deletions src/components/IssueList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ export default function IssueList(props: {title: title; box: box}) {
</TableCell>
<TableCell className="text-lg">
<DatePicker
showMonthAndYearPickers
aria-label='Datovelger'
id={`issues.${index}.date`}
value={dateToCalendarDate(issue.date)}
Expand Down

0 comments on commit 7728a3f

Please sign in to comment.