]> Untitled Git - lemmy-ui.git/commitdiff
Merge branch 'main' into fix/fix-post-creator-alignment
authorJay Sitter <jsit@users.noreply.github.com>
Mon, 19 Jun 2023 03:45:06 +0000 (23:45 -0400)
committerGitHub <noreply@github.com>
Mon, 19 Jun 2023 03:45:06 +0000 (23:45 -0400)
src/shared/components/post/post-listing.tsx

index d4d26c0292ebe340b5a4e01f6c6b2ae337348bda..d2e3893c9380685d9eeda0592850ead802de658b 100644 (file)
@@ -865,10 +865,10 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
       <button
         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
         onClick={linkEvent(this, this.handleShowReportDialog)}
-        data-tippy-content={i18n.t("show_report_dialog")}
         aria-label={i18n.t("show_report_dialog")}
       >
-        <Icon icon="flag" inline />
+        <Icon classes="mr-1" icon="flag" inline />
+        {i18n.t("create_report")}
       </button>
     );
   }
@@ -878,10 +878,14 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
       <button
         className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
         onClick={linkEvent(this, this.handleBlockPersonClick)}
-        data-tippy-content={i18n.t("block_user")}
         aria-label={i18n.t("block_user")}
       >
-        {this.state.blockLoading ? <Spinner /> : <Icon icon="slash" inline />}
+        {this.state.blockLoading ? (
+          <Spinner />
+        ) : (
+          <Icon classes="mr-1" icon="slash" inline />
+        )}
+        {i18n.t("block_user")}
       </button>
     );
   }