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 b84f77c commit 8f5b30fCopy full SHA for 8f5b30f
src/internal-packages/validation/lib/components/rule.jsx
@@ -56,12 +56,12 @@ class Rule extends React.Component {
56
render() {
57
const Parameters = _.get(ruleCategories, this.props.category, null);
58
const ruleParameters = Parameters ?
59
- <Parameters
+ (<Parameters
60
ref="Parameters"
61
id={this.props.id}
62
serverVersion={this.props.serverVersion}
63
parameters={this.props.parameters}
64
- /> : null;
+ />) : null;
65
66
const nullableDisabled = _.includes(['exists', 'mustNotExist', ''],
67
this.props.category);
0 commit comments