Skip to content

Commit

Permalink
added extra params for mutiselect
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-prateekkeerthi committed Sep 1, 2023
1 parent c4e9dd2 commit 24b0140
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions react/components/AutoComplete/AutoComplete.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ const AutoComplete = ({
: renderOptionSingle(props, option);
}}
{...rest}
onChange={(_event, selectedVal) =>
onChange(id, selectedVal || "")
onChange={(_event, selectedVal, reason, detail ) =>
onChange(id, selectedVal || "", reason, detail)
}
/>
</FormControl>
Expand Down
1 change: 0 additions & 1 deletion react/components/DateTimeField/DateTimeField.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export const dateTimeTextFieldStyle = {
};

const DateTimeField = ({ label, dateTimeValue, handleDateTimeChange,disabled }) => {
console.log(disabled)
return (
<FormControl>
<LocalizationProvider dateAdapter={AdapterDayjs}>
Expand Down
2 changes: 1 addition & 1 deletion react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@madie/madie-design-system",
"version": "1.0.52",
"version": "1.0.53",
"description": "Shared style guide across the Madie program.",
"main": "dist/index.js",
"homepage": "https://github.com/MeasureAuthoringTool/madie-design-system",
Expand Down

0 comments on commit 24b0140

Please sign in to comment.