diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-25 16:45:33 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-25 16:45:33 +0200 |
commit | cad7bf27f571edf169568db28c51175f68cf3b21 (patch) | |
tree | be9238ed2bdab2e1028c0671ffd9ba103dfe82bb /src/web/js | |
parent | add a way to edit the visibity of a feed via the react interface (diff) | |
download | newspipe-cad7bf27f571edf169568db28c51175f68cf3b21.tar.gz newspipe-cad7bf27f571edf169568db28c51175f68cf3b21.tar.bz2 newspipe-cad7bf27f571edf169568db28c51175f68cf3b21.zip |
Updated some glyphicons.
Diffstat (limited to 'src/web/js')
-rw-r--r-- | src/web/js/components/RightPanel.react.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js index f424064a..ba842ce5 100644 --- a/src/web/js/components/RightPanel.react.js +++ b/src/web/js/components/RightPanel.react.js @@ -73,9 +73,9 @@ var PanelMixin = { items.push(<dd key={key}>{this.props.obj[field.key]}</dd>); } else if(field.type == 'bool') { if(this.props.obj[field.key]) { - items.push(<dd key={key}><Glyphicon glyph="ok" /></dd>); + items.push(<dd key={key}><Glyphicon glyph="check" /></dd>); } else { - items.push(<dd key={key}><Glyphicon glyph="pause" /></dd>); + items.push(<dd key={key}><Glyphicon glyph="unchecked" /></dd>); } } else if (field.type == 'link') { items.push(<dd key={key}> |