Trailing spaces should not be part of translation.

This commit is contained in:
infinite-persistence 2021-11-26 08:26:13 +08:00
parent c15a52cb46
commit ac11dec484
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -519,7 +519,7 @@ export function CommentCreate(props: Props) {
label={
<span className="commentCreate__labelWrapper">
{!livestream && (
<div className="commentCreate__label">{isReply ? __('Replying as ') : __('Comment as ')}</div>
<div className="commentCreate__label">{(isReply ? __('Replying as') : __('Comment as')) + ' '}</div>
)}
<SelectChannel tiny />
</span>