We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af96cf commit 250283eCopy full SHA for 250283e
lib/steps_components/options/OptionsStep.jsx
@@ -38,7 +38,9 @@ class OptionsStep extends Component {
38
return (
39
<OptionsStepContainer className="rsc-os">
40
<Options className="rsc-os-options">
41
- {Object.values(options).map(this.renderOption)}
+ {Object.keys(options).map(key => {
42
+ return options[key];
43
+ }).map(this.renderOption)}
44
</Options>
45
</OptionsStepContainer>
46
);
0 commit comments