aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/components/RightPanel.react.js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-08-29 08:24:03 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-08-29 08:24:03 +0200
commit472a3b3de6a3121c901067f40aab1dc377475537 (patch)
tree7f9a6877e12efd2d12d85b479bbe994241301e6a /src/web/js/components/RightPanel.react.js
parentFreezed version of modules in requirements.txt (diff)
downloadnewspipe-472a3b3de6a3121c901067f40aab1dc377475537.tar.gz
newspipe-472a3b3de6a3121c901067f40aab1dc377475537.tar.bz2
newspipe-472a3b3de6a3121c901067f40aab1dc377475537.zip
Updated JS libraries.
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