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.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