This commit is contained in:
Henry Jameson 2026-08-24 18:04:59 +03:00
commit 4d885055a7
2 changed files with 7 additions and 5 deletions

View file

@ -30,7 +30,7 @@ const Timeline = {
footerSlipgate: Object, // reference to an element where we should put our footer footerSlipgate: Object, // reference to an element where we should put our footer
embedded: Boolean, embedded: Boolean,
inProfile: Boolean, inProfile: Boolean,
skipPinned: Boolean skipPinned: Boolean,
}, },
data() { data() {
return { return {

View file

@ -47,10 +47,12 @@ const UserProfileAdminView = {
}, },
methods: { methods: {
fetchStatuses(page) { fetchStatuses(page) {
return useAdminSettingsStore().fetchStatuses({ return useAdminSettingsStore()
...this.fetchOptions, .fetchStatuses({
page, ...this.fetchOptions,
}).then(({ items }) => items) page,
})
.then(({ items }) => items)
}, },
}, },
components: { components: {