Skip to content

Commit

Permalink
fix displayed news items count
Browse files Browse the repository at this point in the history
  • Loading branch information
milankowww committed Oct 20, 2021
1 parent 4bdebe0 commit 7f962f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/src/components/assess/ContentDataAssess.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
}
}).then(() => {
this.news_items_data = this.news_items_data.concat(this.$store.getters.getNewsItems.items);
this.$emit('new-data-loaded', this.news_items_data.length);
this.$emit('new-data-loaded', this.$store.getters.getNewsItems.total_count);
setTimeout( () => {
this.$emit('card-items-reindex');
},200);
Expand Down

0 comments on commit 7f962f4

Please sign in to comment.