Skip to content

Feature firefox #48

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Dec 1, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
This has to be HTTPS too
  • Loading branch information
Martyn Chamberlin committed Dec 1, 2016
commit be7ded476ce30624b66827e472ea74f51e0beb8b
2 changes: 1 addition & 1 deletion app/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class Header extends Component {
<Link slug={`member/${this.props.user.username}`}>
<div className={style.userInfo}>
<span className={style.username}>{this.props.user.username}</span>
<img role="presentation" width="25" src={`http:${this.props.user.avatarUrl}`} />
<img role="presentation" width="25" src={`https:${this.props.user.avatarUrl}`} />
</div>
</Link>
);
Expand Down