Revert "RTL: remove blank character inside bdi (#9038)" (#9056)

This reverts commit c7e9f9ff1e.
This commit is contained in:
Eugen Rochko 2018-10-22 23:23:00 +02:00 committed by GitHub
parent 4f0bdbaaaf
commit 81017eaea7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -22,8 +22,7 @@ export default class DisplayName extends React.PureComponent {
return (
<span className='display-name'>
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi>
<span>{suffix}</span>
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> {suffix}
</span>
);
}