Skip to content

Commit

Permalink
Improved default avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka committed Oct 9, 2020
1 parent 66f79e2 commit 13628e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [0.3.1]
- Improved default avatar

Please note that this plugin is still in a prerelease (public beta) stage,
meaning there are still some rough edges here and there, and not every feature
is fully implemented yet. If you find any issues or have ideas for improvements,
please don't hesitate to contact me to shape the final plugin to be the best it
can be.

## [0.3.0]
- Emoji Support
- Multi-line-message support
Expand Down
2 changes: 1 addition & 1 deletion src/components/chat/message-bubble/avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function Avatar(props: { author: Author }) {
className={'Avatar'}
alt={`${props.author.name}'s avatar image`}
width={32}
src={`https://gravatar.com/avatar/${hash}?s=400&d=robohash&r=x`}
src={`https://gravatar.com/avatar/${hash}?s=64&d=mp&r=g`}
/>
);
}

0 comments on commit 13628e8

Please sign in to comment.