File tree Expand file tree Collapse file tree
packages/inline-dropdown/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export default class RootInlineDropdown extends HTMLElement {
3737 _render = ( ) => {
3838 if ( this . _model && this . _session ) {
3939 let elem = React . createElement ( InlineDropdown , {
40+ model :this . _model ,
4041 prompt : this . _model . prompt ,
4142 rationale : this . _model . rationale ,
4243 teacherInstructions : this . _model . teacherInstructions ,
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export class InlineDropdown extends React.Component {
2424 value : PropTypes . object ,
2525 feedback : PropTypes . object ,
2626 onChange : PropTypes . func ,
27+ language : PropTypes . string ,
2728 } ;
2829
2930 static defaultProps = {
@@ -149,7 +150,7 @@ const styles = (theme) => ({
149150 color : color . correct ( ) ,
150151 } ,
151152 '&.incorrect' : {
152- color : color . incorrect ( ) ,
153+ color : color . incorrectWithIcon ( ) ,
153154 } ,
154155 } ,
155156 srOnly : {
You can’t perform that action at this time.
0 commit comments