Moving view source.

This commit is contained in:
Dessalines 2020-02-29 22:16:52 -05:00
parent 399be2370d
commit 59391b2369

View File

@ -525,6 +525,16 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</li> </li>
) : ( ) : (
<> <>
{this.props.showBody && post.body && (
<li className="list-inline-item">
<span
className="pointer"
onClick={linkEvent(this, this.handleViewSource)}
>
{i18n.t('view_source')}
</span>
</li>
)}
{this.canModOnSelf && ( {this.canModOnSelf && (
<> <>
<li className="list-inline-item"> <li className="list-inline-item">
@ -747,16 +757,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
)} )}
</> </>
)} )}
{this.props.showBody && post.body && (
<li className="list-inline-item">
<span
className="pointer"
onClick={linkEvent(this, this.handleViewSource)}
>
{i18n.t('view_source')}
</span>
</li>
)}
</ul> </ul>
{this.state.showRemoveDialog && ( {this.state.showRemoveDialog && (
<form <form