Merge pull request #718 from coralproject/no-username-alias

Don't alias username
This commit is contained in:
Kim Gardner
2017-06-28 12:51:27 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -34,7 +34,7 @@ export default withFragments({
}
user {
id
name: username
username
}
action_summaries {
__typename
@@ -24,7 +24,7 @@ export default class AuthorName extends Component {
return (
<div
className={`${packagename}-text`}>
{author && author.name}
{author && author.username}
</div>
);
}