fix: fix typo

This fixes channel tab pagination
This commit is contained in:
jeidnx
2025-08-03 22:00:02 +02:00
committed by Bnyro
parent 88b624f14d
commit 7b80e293c4

View File

@@ -197,7 +197,7 @@ export default {
}).then(json => { }).then(json => {
this.tabs[this.selectedTab].tabNextPage = json.nextpage; this.tabs[this.selectedTab].tabNextPage = json.nextpage;
this.loading = false; this.loading = false;
json.this.contentItems.push(...json.content); this.contentItems.push(...json.content);
this.fetchDeArrowContent(json.content); this.fetchDeArrowContent(json.content);
this.tabs[this.selectedTab].content = this.contentItems; this.tabs[this.selectedTab].content = this.contentItems;
}); });