From f656dbd35a09cc4c40d3a7f313a4536513b84f21 Mon Sep 17 00:00:00 2001 From: Sem Postma Date: Thu, 26 Feb 2026 12:18:40 +0100 Subject: [PATCH 1/4] feat: add custom issue url documentation --- content/docs/configuration-options.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/docs/configuration-options.md b/content/docs/configuration-options.md index be4465c..d807600 100644 --- a/content/docs/configuration-options.md +++ b/content/docs/configuration-options.md @@ -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`. + +**Example:** + +```yaml +issue_reports: + url: https://github.com/your-org/your-repo/issues/new +``` + ## Collections *This setting is required.* From 856176bd53108d31340a600333a4c500af3057ea Mon Sep 17 00:00:00 2001 From: Sem Postma Date: Fri, 6 Mar 2026 09:53:28 +0100 Subject: [PATCH 2/4] fix: spelling issue --- content/docs/configuration-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/configuration-options.md b/content/docs/configuration-options.md index d807600..34fa663 100644 --- a/content/docs/configuration-options.md +++ b/content/docs/configuration-options.md @@ -233,7 +233,7 @@ slug: ## 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`. +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`. **Example:** From 3d0829f36659dc36d2797d9c104dd1065d9add24 Mon Sep 17 00:00:00 2001 From: Sem Postma Date: Fri, 6 Mar 2026 09:54:47 +0100 Subject: [PATCH 3/4] fix: add second example --- content/docs/configuration-options.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/docs/configuration-options.md b/content/docs/configuration-options.md index 34fa663..62f26bd 100644 --- a/content/docs/configuration-options.md +++ b/content/docs/configuration-options.md @@ -240,6 +240,8 @@ When an error occurs in the CMS, users are presented with an option to report th ```yaml issue_reports: url: https://github.com/your-org/your-repo/issues/new + # or + url: https://example.com/contact-support ``` ## Collections From da5e666d5fb2ad1c86b0122a3d3de16476224c6a Mon Sep 17 00:00:00 2001 From: Sem Postma Date: Thu, 12 Mar 2026 13:04:16 +0100 Subject: [PATCH 4/4] fix: Sampleshould works when copied without changes Co-authored-by: Yan <61414485+yanthomasdev@users.noreply.github.com> --- content/docs/configuration-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/configuration-options.md b/content/docs/configuration-options.md index 62f26bd..df9e2fe 100644 --- a/content/docs/configuration-options.md +++ b/content/docs/configuration-options.md @@ -241,7 +241,7 @@ When an error occurs in the CMS, users are presented with an option to report th issue_reports: url: https://github.com/your-org/your-repo/issues/new # or - url: https://example.com/contact-support + # url: https://example.com/contact-support ``` ## Collections