* Teams

* Fix errors on versions with no files

* Fix user lookup

* Fix mod pages breaking
This commit is contained in:
Geometrically
2020-12-31 12:12:11 -07:00
committed by GitHub
parent 5a6c2dfcd5
commit 26488b793a
3 changed files with 8 additions and 70 deletions

View File

@@ -57,7 +57,7 @@ export default {
).data
users.forEach((it) => {
const index = members.findIndex((x) => x.user_id === it.user_id)
const index = members.findIndex((x) => x.user_id === it.id)
members[index].avatar_url = it.avatar_url
members[index].name = it.username
})