Merge branch 'from/develop/tusooa/fix-follow-req' into 'develop'

Fix follow request count

See merge request pleroma/pleroma-fe!1638
This commit is contained in:
HJ 2022-09-08 10:20:10 +00:00
commit de40ebd5ea
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const api = {
followRequests: []
},
getters: {
followRequestCount: state => state.api.followRequests.length
followRequestCount: state => state.followRequests.length
},
mutations: {
setBackendInteractor (state, backendInteractor) {