lint
This commit is contained in:
parent
74319a5d4c
commit
4d885055a7
2 changed files with 7 additions and 5 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue