* 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

@@ -149,7 +149,11 @@
<p>
Modrinth's code is fully open source licensed under AGPL. We've
created a high peformant Rust based backend that is
<span><nuxt-link to="/developers">fully documented</nuxt-link></span>
<span
><a href="https://github.com/modrinth/labrinth/wiki"
>fully documented</a
></span
>
for all kinds of tools to use. Our team is dedicated to maintaining an
open source ecosystem for all Modrinth applications.
</p>

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
})