Skip to content

Commit

Permalink
Merge pull request #848 from cityofaustin/jc-team-select-props
Browse files Browse the repository at this point in the history
Fixes an MUI warning about conflicting menu props
  • Loading branch information
johnclary authored Oct 27, 2022
2 parents 191f29f + e52027c commit 2608119
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ const ProjectTeamRoleMultiselect = ({ roles, value, onChange }) => {
Source: https://github.com/mui-org/material-ui/issues/19245#issuecomment-620488016
*/
MenuProps={{
getContentAnchorEl: () => null,
getContentAnchorEl: null,
style: {
maxHeight: 500,
},
PaperProps: { style: {width: "50%"}},
PaperProps: { style: { width: "50%" } },
anchorOrigin: { vertical: "bottom", horizontal: "center" },
transformOrigin: { vertical: "top", horizontal: "center" },
}}
Expand Down

0 comments on commit 2608119

Please sign in to comment.