Skip to content

Commit c2b50f8

Browse files
dcramermattrobenolt
authored andcommitted
Merge pull request #2631 from drcapulet/alexc-consistent-gravatars
Default to 'mystery man' for Gravatars like in the Python code
1 parent ac1d994 commit c2b50f8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/sentry/static/sentry/app/components/gravatar.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Gravatar = React.createClass({
2323

2424
let query = {
2525
s: this.props.size || undefined,
26-
d: this.props.default || undefined
26+
d: this.props.default || 'mm'
2727
};
2828

2929
url += '?' + $.param(query);
@@ -44,4 +44,3 @@ const Gravatar = React.createClass({
4444
});
4545

4646
export default Gravatar;
47-

0 commit comments

Comments
 (0)