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 eeab957 commit 6565975Copy full SHA for 6565975
src/Methods/Methods.tsx
@@ -69,6 +69,7 @@ class Methods extends Component<IProps> {
69
<Typography variant="h3" gutterBottom>Methods</Typography>
70
{schema.methods.map((method, i) => (
71
<ExpansionPanel
72
+ id={method.name}
73
key={i + method.name}
74
TransitionProps={{ unmountOnExit: disableTransitionProps ? false : true }}
75
defaultExpanded={uiSchema && (uiSchema.methods["ui:defaultExpanded"] === true || uiSchema.methods["ui:defaultExpanded"][method.name] === true)}
@@ -89,7 +90,7 @@ class Methods extends Component<IProps> {
89
90
uiSchema={uiSchema}
91
source={method.description}
92
className={classes.description}
- />
93
+ />
94
</ExpansionPanelDetails>
95
}
96
{method.params && method.params.length > 0 &&
0 commit comments