mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 04:11:12 +00:00
Merge branch 'main' into actually-last-issue-template-tweaks
This commit is contained in:
commit
eb1d11b300
3 changed files with 7 additions and 5 deletions
6
.github/ISSUE_TEMPLATE/BUG_REPORT.yml
vendored
6
.github/ISSUE_TEMPLATE/BUG_REPORT.yml
vendored
|
@ -1,6 +1,5 @@
|
||||||
name: "\U0001F41E Bug report"
|
name: "\U0001F41E Bug report"
|
||||||
description: Create a bug report to help us improve Lemmy-UI!
|
description: Report a bug to help us improve Lemmy-UI.
|
||||||
title: ""
|
|
||||||
labels: ["bug", "triage"]
|
labels: ["bug", "triage"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
@ -39,7 +38,6 @@ body:
|
||||||
2.
|
2.
|
||||||
3.
|
3.
|
||||||
4.
|
4.
|
||||||
5.
|
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
@ -63,5 +61,5 @@ body:
|
||||||
id: lemmy-instance
|
id: lemmy-instance
|
||||||
attributes:
|
attributes:
|
||||||
label: Lemmy Instance URL
|
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
|
placeholder: https://lemmy.ml
|
||||||
|
|
2
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml
vendored
2
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: "\U0001F680 Feature request"
|
name: "\U0001F680 Feature request"
|
||||||
description: Suggest an idea to improve Lemmy-UI
|
description: Suggest an idea for Lemmy-UI.
|
||||||
labels: ["enhancement"]
|
labels: ["enhancement"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
|
|
@ -686,6 +686,10 @@ export class Modlog extends Component<
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async componentDidMount() {
|
||||||
|
await this.refetch();
|
||||||
|
}
|
||||||
|
|
||||||
get combined() {
|
get combined() {
|
||||||
const res = this.state.res;
|
const res = this.state.res;
|
||||||
const combined = res.state == "success" ? buildCombined(res.data) : [];
|
const combined = res.state == "success" ? buildCombined(res.data) : [];
|
||||||
|
|
Loading…
Reference in a new issue