Skip to content

Commit

Permalink
fix: course creation button is inactive
Browse files Browse the repository at this point in the history
When using Tab to move from Org field to the
next Course number field the Org value is not saved.

Closes openedx/frontend-app-authoring#1199 for
Redwood release.
  • Loading branch information
cmltaWt0 authored and arbrandes committed Oct 18, 2024
1 parent 705c79a commit f230d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editors/sharedComponents/TypeaheadDropdown/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class TypeaheadDropdown extends React.Component {
this.setValue(opt);
this.setState({ displayValue: opt });
} else {
this.setValue('');
this.setValue(value);
this.setState({ displayValue: value });
}
}
Expand Down

0 comments on commit f230d64

Please sign in to comment.