Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions content/docs/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,17 @@ slug:
sanitize_replacement: "_"
```

## Issue Reports

When an error occurs in the CMS, users are presented with an option to report the issue. By default, this links to the Decap CMS GitHub repository. You can customize this URL to point to your own issue tracker using the `issue_reports` setting. If you are using a non-Github url, you may want to [create a custom locale](#locale) and update following translation key: `ui.errorBoundary.reportIt`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few casing and grammar nits here

Suggested change
When an error occurs in the CMS, users are presented with an option to report the issue. By default, this links to the Decap CMS GitHub repository. You can customize this URL to point to your own issue tracker using the `issue_reports` setting. If you are using a non-Github url, you may want to [create a custom locale](#locale) and update following translation key: `ui.errorBoundary.reportIt`.
When an error occurs in the CMS, users are presented with an option to report the issue. By default, this links to the Decap CMS GitHub repository. You can customize this URL to point to your own issue tracker using the `issue_reports` setting. If you are using a non-GitHub URL, you may want to [create a custom locale](#locale) and update the following translation key: `ui.errorBoundary.reportIt`.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for spotting those, these are now fixed.


**Example:**

```yaml
issue_reports:
url: https://github.com/your-org/your-repo/issues/new
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I feel like the main motivation for this option is for non-technical people, so maybe we'd like the example to be more geared towards this type of user in particular?

Like this:

Suggested change
url: https://github.com/your-org/your-repo/issues/new
url: https://example.com/contact-support

I could be wrong, let me know what you think!

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Completely agree, I've listed them both as it illustrates both use cases.

```

## Collections

*This setting is required.*
Expand Down