diff options
| author | 2024-07-08 09:38:27 +0200 | |
|---|---|---|
| committer | 2024-07-08 09:38:27 +0200 | |
| commit | bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad (patch) | |
| tree | d24aa92f743de5c440ce786d61cc86f72bf9a3e7 /web/source/settings/views/moderation/reports | |
| parent | [chore]: Bump github.com/microcosm-cc/bluemonday from 1.0.26 to 1.0.27 (#3081) (diff) | |
| download | gotosocial-bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad.tar.xz | |
[frontend] Better autocapitalize/spellcheck settings on forms (#3077)
Diffstat (limited to 'web/source/settings/views/moderation/reports')
| -rw-r--r-- | web/source/settings/views/moderation/reports/detail.tsx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/web/source/settings/views/moderation/reports/detail.tsx b/web/source/settings/views/moderation/reports/detail.tsx index 7d6e542fb..298b5bd37 100644 --- a/web/source/settings/views/moderation/reports/detail.tsx +++ b/web/source/settings/views/moderation/reports/detail.tsx @@ -213,14 +213,18 @@ function ReportActionForm({ report }) { This is useful for providing an explanation about what action was taken (if any) before the report was marked as resolved. <br /> - <b> - Any comment made here will be visible - to the user that created the report! - </b> + <div className="info"> + <i className="fa fa-fw fa-exclamation-triangle" aria-hidden="true"></i> + <b> + If the report was created by a local account, then any + comment made here will be emailed to that account's user! + </b> + </div> </> <TextArea field={form.comment} label="Comment" + autoCapitalize="sentences" /> <MutationButton disabled={false} |
