Skip to content

Commit

Permalink
fix(periodtypeselector): fixes
Browse files Browse the repository at this point in the history
- Fixed the SingleSelectField component in assining the selected field value
  • Loading branch information
tibendadavis committed Jul 30, 2024
1 parent 8f80628 commit 5e82b8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function PeriodTypeSelector({ label, name }: any) {
label={label}
required
filterable
selected={field.value}
selected={field.value.toString().toUpperCase()}
onChange={({ selected }: any) => field.onChange(selected)}
validationText={fieldState.error?.message}
error={!!fieldState.error}
Expand Down

0 comments on commit 5e82b8e

Please sign in to comment.