diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-04 14:50:39 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-04 14:50:39 +0200 |
commit | e90256fc71843c7709174cb9cd7fcabc1dcb7966 (patch) | |
tree | a1aa47e585729ca60783a222e342f72886ea0ed3 /src/web/js | |
parent | Updated CHANGELOG. (diff) | |
download | newspipe-e90256fc71843c7709174cb9cd7fcabc1dcb7966.tar.gz newspipe-e90256fc71843c7709174cb9cd7fcabc1dcb7966.tar.bz2 newspipe-e90256fc71843c7709174cb9cd7fcabc1dcb7966.zip |
By default only list feeds with unread articles.
Diffstat (limited to 'src/web/js')
-rw-r--r-- | src/web/js/components/Menu.react.js | 2 |
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 4537ee81..d4752a94 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() { |