aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/components
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2016-02-02 21:55:57 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-02-02 21:55:57 +0100
commitded0971f5691ed2934e690c8d7bd480ed15402f7 (patch)
tree0695b1792674a6b12d9e165429554f524f00c8ef /src/web/js/components
parentordering categories in the feed form (diff)
downloadnewspipe-ded0971f5691ed2934e690c8d7bd480ed15402f7.tar.gz
newspipe-ded0971f5691ed2934e690c8d7bd480ed15402f7.tar.bz2
newspipe-ded0971f5691ed2934e690c8d7bd480ed15402f7.zip
updating unread count when fetching unread
Diffstat (limited to 'src/web/js/components')
-rw-r--r--src/web/js/components/RightPanel.react.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/js/components/RightPanel.react.js b/src/web/js/components/RightPanel.react.js
index 3b625689..1e66ce39 100644
--- a/src/web/js/components/RightPanel.react.js
+++ b/src/web/js/components/RightPanel.react.js
@@ -39,7 +39,7 @@ var PanelMixin = {
</ButtonGroup>);
}
return (<div id="right-panel-heading" className="panel-heading">
- <h4>{icon}<strong>Title:</strong> {this.getTitle()}</h4>
+ <h4>{icon}{this.getTitle()}</h4>
{btn_grp}
</div>);
},
bgstack15