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
embedded: Boolean,
inProfile: Boolean,
skipPinned: Boolean
skipPinned: Boolean,
},
data() {
return {

View file

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