mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Moving view source.
This commit is contained in:
parent
399be2370d
commit
59391b2369
20
ui/src/components/post-listing.tsx
vendored
20
ui/src/components/post-listing.tsx
vendored
@ -525,6 +525,16 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||
</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 && (
|
||||
<>
|
||||
<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>
|
||||
{this.state.showRemoveDialog && (
|
||||
<form
|
||||
|
Loading…
Reference in New Issue
Block a user