aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-25 16:45:33 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-25 16:45:33 +0200
commitcad7bf27f571edf169568db28c51175f68cf3b21 (patch)
treebe9238ed2bdab2e1028c0671ffd9ba103dfe82bb /src
parentadd a way to edit the visibity of a feed via the react interface (diff)
downloadnewspipe-cad7bf27f571edf169568db28c51175f68cf3b21.tar.gz
newspipe-cad7bf27f571edf169568db28c51175f68cf3b21.tar.bz2
newspipe-cad7bf27f571edf169568db28c51175f68cf3b21.zip
Updated some glyphicons.
Diffstat (limited to 'src')
-rw-r--r--src/web/js/components/RightPanel.react.js4
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}>
bgstack15