Skip to content

Commit

Permalink
Faltaba el avatar en varios lugares
Browse files Browse the repository at this point in the history
  • Loading branch information
guillecro committed Apr 15, 2020
1 parent f530016 commit ab5f165
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/comment-liked.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const CommentLiked = (props) => {
<div style={CommentContainerStyle.cardContentStyle}>
<div style={CommentContainerStyle.userContainerStyle}>
<Span {...CommentContainerStyle.userNameStyle}>
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}`} style={CommentContainerStyle.userAvatarStyle} />
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}/avatar`} style={CommentContainerStyle.userAvatarStyle} />
{props.author.fullname}
</Span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/comment-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const CommentRead = (props) => {
<div style={CommentContainerStyle.cardContentStyle}>
<div style={CommentContainerStyle.userContainerStyle}>
<Span {...CommentContainerStyle.userNameStyle}>
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}`} style={CommentContainerStyle.userAvatarStyle} />
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}/avatar`} style={CommentContainerStyle.userAvatarStyle} />
{props.author.fullname}
</Span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/comment-replied.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const CommentRead = (props) => {
<div style={CommentContainerStyle.cardContentStyle}>
<div style={CommentContainerStyle.userContainerStyle}>
<Span {...CommentContainerStyle.userNameStyle}>
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}`} style={CommentContainerStyle.userAvatarStyle} />
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}/avatar`} style={CommentContainerStyle.userAvatarStyle} />
{props.author.fullname}
</Span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/comment-resolved.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const CommentRead = (props) => {
<div style={CommentContainerStyle.cardContentStyle}>
<div style={CommentContainerStyle.userContainerStyle}>
<Span {...CommentContainerStyle.userNameStyle}>
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}`} style={CommentContainerStyle.userAvatarStyle} />
<Image src={`${ORGANIZATION_API_URL}/api/v1/users/${props.author.id}/avatar`} style={CommentContainerStyle.userAvatarStyle} />
{props.author.fullname}
</Span>
</div>
Expand Down

0 comments on commit ab5f165

Please sign in to comment.