hide loader after marking feed as read

This commit is contained in:
Nazar Kanaev 2020-08-15 12:59:54 +01:00
parent 02e185ae92
commit 0b620dc76b

View File

@ -359,6 +359,7 @@ var vm = new Vue({
var query = this.getItemsQuery() var query = this.getItemsQuery()
api.items.mark_read(query).then(function() { api.items.mark_read(query).then(function() {
vm.items = [] vm.items = []
vm.itemsPage = {'cur': 1, 'num': 1}
vm.refreshStats() vm.refreshStats()
}) })
}, },