Skip to content

Commit

Permalink
Merge pull request #5019 from manuelmeister/bugfix/default-useravatar…
Browse files Browse the repository at this point in the history
…-color-invalid

Fixes missing function call
  • Loading branch information
manuelmeister committed Apr 20, 2024
2 parents fe475bf + 0ca74bd commit 43a6fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/user/UserAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default {
},
color() {
if (this.isLoading) {
return defaultColor
return defaultColor()
}
return this.user
? userColor(this.user)
Expand Down

0 comments on commit 43a6fd9

Please sign in to comment.