Skip to content

Commit

Permalink
Merge pull request #183 from MeasureAuthoringTool/MAT-5963/addExtraPr…
Browse files Browse the repository at this point in the history
…opsToAutoComplete

added extra params for mutiselect
  • Loading branch information
sb-prateekkeerthi authored Sep 1, 2023
2 parents c4e9dd2 + f6f9f7e commit 766ebb6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 18 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
28 changes: 14 additions & 14 deletions react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 766ebb6

Please sign in to comment.