fix: Remove wrapping li's

This commit is contained in:
Jay Sitter 2023-06-25 18:13:13 -04:00
parent 1db654ecf5
commit bbe897dc01

View file

@ -1147,7 +1147,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
this.canAdmin_) &&
this.creatorIsMod_ &&
(!this.state.showConfirmTransferCommunity ? (
<li>
<button
className="btn btn-link btn-animate text-muted py-0 dropdown-item"
onClick={linkEvent(
@ -1158,18 +1157,14 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
>
{I18NextService.i18n.t("transfer_community")}
</button>
</li>
) : (
<>
<li>
<button
className="btn btn-link btn-animate text-muted py-0 dropdown-item"
aria-label={I18NextService.i18n.t("are_you_sure")}
>
{I18NextService.i18n.t("are_you_sure")}
</button>
</li>
<li>
<button
className="btn btn-link btn-animate text-muted py-0 dropdown-item"
aria-label={I18NextService.i18n.t("yes")}
@ -1181,8 +1176,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
I18NextService.i18n.t("yes")
)}
</button>
</li>
<li>
<button
className="btn btn-link btn-animate text-muted py-0 dropdown-item"
onClick={linkEvent(
@ -1193,7 +1186,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
>
{I18NextService.i18n.t("no")}
</button>
</li>
</>
))}
{/* Admins can ban from all, and appoint other admins */}
@ -1201,18 +1193,16 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<>
{!this.creatorIsAdmin_ && (
<>
{!isBanned(post_view.creator) ? (
<li>{this.modBanButton}</li>
) : (
<li>{this.modUnbanButton}</li>
)}
<li>{this.purgePersonButton}</li>
<li>{this.purgePostButton}</li>
{!isBanned(post_view.creator)
? this.modBanButton
: this.modUnbanButton}
{this.purgePersonButton}
{this.purgePostButton}
</>
)}
{!isBanned(post_view.creator) && post_view.creator.local && (
<li>{this.toggleAdminButton}</li>
)}
{!isBanned(post_view.creator) &&
post_view.creator.local &&
this.toggleAdminButton}
</>
)}
</div>