aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/objects/ConnectionMatchedRules.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/objects/ConnectionMatchedRules.js')
-rw-r--r--frontend/src/components/objects/ConnectionMatchedRules.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/objects/ConnectionMatchedRules.js b/frontend/src/components/objects/ConnectionMatchedRules.js
index cfd1254..a69cad8 100644
--- a/frontend/src/components/objects/ConnectionMatchedRules.js
+++ b/frontend/src/components/objects/ConnectionMatchedRules.js
@@ -33,8 +33,8 @@ class ConnectionMatchedRules extends Component {
};
render() {
- const matchedRules = this.props.matchedRules.map(mr => {
- const rule = this.props.rules.find(r => r.id === mr);
+ const matchedRules = this.props.matchedRules.map((mr) => {
+ const rule = this.props.rules.find((r) => r.id === mr);
return <ButtonField key={mr} onClick={() => this.onMatchedRulesSelected(rule.id)} name={rule.name}
color={rule.color} small/>;
});