]> Untitled Git - lemmy-ui.git/commitdiff
Merge branch 'main' into actually-last-issue-template-tweaks
authorAlec Armbruster <35377827+alectrocute@users.noreply.github.com>
Fri, 23 Jun 2023 00:36:23 +0000 (20:36 -0400)
committerGitHub <noreply@github.com>
Fri, 23 Jun 2023 00:36:23 +0000 (20:36 -0400)
.github/ISSUE_TEMPLATE/BUG_REPORT.yml
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml
src/shared/components/modlog.tsx

index 4931726ed90dbca0501b82276f205c1b9110fa2e..a0b16005c8b26dd286a1c1adabba6b94aa1bfb59 100644 (file)
@@ -1,6 +1,5 @@
 name: "\U0001F41E Bug report"
-description: Create a bug report to help us improve Lemmy-UI!
-title: ""
+description: Report a bug to help us improve Lemmy-UI.
 labels: ["bug", "triage"]
 body:
   - type: markdown
@@ -39,7 +38,6 @@ body:
         2.
         3.
         4.
-        5.
     validations:
       required: true
   - type: textarea
@@ -63,5 +61,5 @@ body:
     id: lemmy-instance
     attributes:
       label: Lemmy Instance URL
-      description: The URL of the Lemmy instance where the bug can be reproduced.
+      description: What's the URL of the Lemmy instance where the bug can be reproduced?
       placeholder: https://lemmy.ml
index ed5da33164c3ed87bdc7ce1afa2e33ebee34c88b..ac7d8dc6e82b508fd06c06fb87b43c4e7d4a4cef 100644 (file)
@@ -1,5 +1,5 @@
 name: "\U0001F680 Feature request"
-description: Suggest an idea to improve Lemmy-UI
+description: Suggest an idea for Lemmy-UI.
 labels: ["enhancement"]
 body:
   - type: markdown
index e705bac86694affe85e7f72d7dbe71ece7b0e841..722f6e7088211749f6ee2a4a80b61ea88488c4db 100644 (file)
@@ -686,6 +686,10 @@ export class Modlog extends Component<
     }
   }
 
+  async componentDidMount() {
+    await this.refetch();
+  }
+
   get combined() {
     const res = this.state.res;
     const combined = res.state == "success" ? buildCombined(res.data) : [];