diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-08-29 08:24:03 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-08-29 08:24:03 +0200 |
commit | 472a3b3de6a3121c901067f40aab1dc377475537 (patch) | |
tree | 7f9a6877e12efd2d12d85b479bbe994241301e6a /src/web/js | |
parent | Freezed version of modules in requirements.txt (diff) | |
download | newspipe-472a3b3de6a3121c901067f40aab1dc377475537.tar.gz newspipe-472a3b3de6a3121c901067f40aab1dc377475537.tar.bz2 newspipe-472a3b3de6a3121c901067f40aab1dc377475537.zip |
Updated JS libraries.
Diffstat (limited to 'src/web/js')
-rw-r--r-- | src/web/js/components/RightPanel.react.js | 5 |
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>; |