aboutsummaryrefslogtreecommitdiff
path: root/src/web/js
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:07:50 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-05 08:07:50 +0200
commit9c270b82701a926877178624e70f4cde1d45a6f8 (patch)
tree6c46dd3c89353c0007c371f116d8a4423cc37f33 /src/web/js
parentBy default only list feeds with unread articles. (2) (diff)
downloadnewspipe-9c270b82701a926877178624e70f4cde1d45a6f8.tar.gz
newspipe-9c270b82701a926877178624e70f4cde1d45a6f8.tar.bz2
newspipe-9c270b82701a926877178624e70f4cde1d45a6f8.zip
By default only list feeds with unread articles by default.
Diffstat (limited to 'src/web/js')
-rw-r--r--src/web/js/components/Menu.react.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/js/components/Menu.react.js b/src/web/js/components/Menu.react.js
index 6fa4071d..925802a6 100644
--- a/src/web/js/components/Menu.react.js
+++ b/src/web/js/components/Menu.react.js
@@ -221,7 +221,7 @@ var MenuFilter = React.createClass({
var Menu = React.createClass({
getInitialState: function() {
- return {filter: 'all', categories: {}, feeds: {},
+ return {filter: 'unread', categories: {}, feeds: {},
all_folded: false, active_type: null, active_id: null};
},
render: function() {
bgstack15