move filter to top

This commit is contained in:
Nazar Kanaev
2020-08-19 12:43:08 +01:00
parent 3b975bae47
commit 7981f696fe
3 changed files with 35 additions and 35 deletions

View File

@@ -201,12 +201,13 @@ var vm = new Vue({
return acc
}, {})
},
totalStats: function() {
filteredTotalStats: function() {
var filter = this.filterSelected
if (filter != 'unread' && filter != 'starred') return ''
return Object.values(this.feedStats).reduce(function(acc, stat) {
acc.unread += stat.unread
acc.starred += stat.starred
return acc
}, {unread: 0, starred: 0})
return acc + stat[filter]
}, 0)
},
itemSelectedContent: function() {
if (!this.itemSelected) return ''