From 43fa0d2b58712569a960ddab3665410ef88feba7 Mon Sep 17 00:00:00 2001 From: Tibo Beijen Date: Thu, 19 Apr 2018 10:43:41 +0200 Subject: [PATCH] Added translation to staff label in comment stream. --- .../coral-embed-stream/src/tabs/stream/components/Comment.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/coral-embed-stream/src/tabs/stream/components/Comment.js b/client/coral-embed-stream/src/tabs/stream/components/Comment.js index 5df119fbc..0983b11c4 100644 --- a/client/coral-embed-stream/src/tabs/stream/components/Comment.js +++ b/client/coral-embed-stream/src/tabs/stream/components/Comment.js @@ -574,7 +574,9 @@ export default class Comment extends React.Component { 'talk-stream-comment-header-tags-container' )} > - {isStaff(comment.tags) ? Staff : null} + {isStaff(comment.tags) ? ( + {t('community.staff')} + ) : null}