Skip to content

Commit

Permalink
fix: minor alphabetization in Select
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGhadyani-Okta committed Jun 22, 2023
1 parent c290d39 commit 28db116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/odyssey-react-mui/src/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,14 +179,14 @@ const Select = forwardRef<HTMLSelectElement, SelectProps>(
const renderFieldComponent = useCallback(
() => (
<MuiSelect
children={children}
id={idOverride}
name={idOverride}
multiple={isMultiSelect}
name={idOverride}
onBlur={onBlur}
onChange={onChange}
onFocus={onFocus}
ref={ref}
children={children}
renderValue={isMultiSelect ? renderValue : undefined}
value={selectedValue}
/>
Expand Down

0 comments on commit 28db116

Please sign in to comment.