From 97ab338486a219e9f40c7e2d2f47ae3749894ae0 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Tue, 27 Jun 2017 23:51:49 +0700 Subject: [PATCH] Don't alias username --- client/coral-embed-stream/src/containers/Comment.js | 2 +- client/coral-plugin-author-name/AuthorName.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/coral-embed-stream/src/containers/Comment.js b/client/coral-embed-stream/src/containers/Comment.js index f5682bdd1..040d1a83e 100644 --- a/client/coral-embed-stream/src/containers/Comment.js +++ b/client/coral-embed-stream/src/containers/Comment.js @@ -34,7 +34,7 @@ export default withFragments({ } user { id - name: username + username } action_summaries { __typename diff --git a/client/coral-plugin-author-name/AuthorName.js b/client/coral-plugin-author-name/AuthorName.js index 66b907ad8..7d453d96f 100644 --- a/client/coral-plugin-author-name/AuthorName.js +++ b/client/coral-plugin-author-name/AuthorName.js @@ -24,7 +24,7 @@ export default class AuthorName extends Component { return (
- {author && author.name} + {author && author.username}
); }