Merge pull request #1398 from jsit/fix/always-show-advanced-buttons

fix: Always show advanced post buttons dropdown
This commit is contained in:
SleeplessOne1917 2023-06-19 20:06:46 +00:00 committed by GitHub
commit b92d023ad3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -642,17 +642,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
); );
} }
get hasAdvancedButtons() {
return (
this.myPost ||
(this.showBody && this.postView.post.body) ||
amMod(this.props.moderators) ||
amAdmin() ||
this.canMod_ ||
this.canAdmin_
);
}
showPreviewButton() { showPreviewButton() {
const post_view = this.postView; const post_view = this.postView;
const body = post_view.post.body; const body = post_view.post.body;
@ -694,7 +683,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
{this.showBody && post_view.post.body && this.viewSourceButton} {this.showBody && post_view.post.body && this.viewSourceButton}
{this.hasAdvancedButtons && (
<div className="dropdown"> <div className="dropdown">
<button <button
className="btn btn-link btn-animate text-muted py-0 dropdown-toggle" className="btn btn-link btn-animate text-muted py-0 dropdown-toggle"
@ -737,7 +725,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
)} )}
</ul> </ul>
</div> </div>
)}
</> </>
); );
} }