From 8fe618c5bea7732cbd99ee86ea06e25231a1b822 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 2 Jul 2020 11:08:58 -0400 Subject: [PATCH] fix typo --- ui/component/commentCreate/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/commentCreate/view.jsx b/ui/component/commentCreate/view.jsx index 0c5386209..b48806206 100644 --- a/ui/component/commentCreate/view.jsx +++ b/ui/component/commentCreate/view.jsx @@ -112,7 +112,7 @@ export function CommentCreate(props: Props) { disabled={channel === CHANNEL_NEW} type={advancedEditor && !isReply ? 'markdown' : 'textarea'} name={isReply ? 'content_reply' : 'content_description'} - label={isReply ? __('Replying as %reply_channel%'), { reply_channel: channel }) : __('Comment')} + label={isReply ? __('Replying as %reply_channel%', { reply_channel: channel }) : __('Comment')} quickActionLabel={isReply ? undefined : advancedEditor ? __('Simple Editor') : __('Advanced Editor')} quickActionHandler={isReply ? undefined : toggleEditorMode} onFocus={onTextareaFocus}