aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/components/RightPanel.react.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/js/components/RightPanel.react.js')
-rw-r--r--src/web/js/components/RightPanel.react.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js
index 6322144f..eeb2c149 100644
--- a/src/web/js/components/RightPanel.react.js
+++ b/src/web/js/components/RightPanel.react.js
@@ -245,7 +245,10 @@ var Feed = React.createClass({
rows.push(<dt key={'d-title'}>Filters</dt>);
for(var i in this.state.obj.filters) {
rows.push(<dd key={'d' + i}>
- When {this.state.obj.filters[i]['action on']} on "{this.state.obj.filters[i].pattern}" ({this.state.obj.filters[i].type}) => {this.state.obj.filters[i].action}
+ When {this.state.obj.filters[i]['action on']}
+ on "{this.state.obj.filters[i].pattern}"
+ ({this.state.obj.filters[i].type})
+ "=" {this.state.obj.filters[i].action}
</dd>);
}
return <dl className="dl-horizontal">{rows}</dl>;
bgstack15