From 448a9af948d682751c902d97eac0dd195481a297 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:06:07 +0100 Subject: [PATCH 01/20] Update and rename bug-report.md to bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.md | 28 ----------- .github/ISSUE_TEMPLATE/bug-report.yml | 72 +++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 28 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index 0df6692a..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Bug report -about: Report a bug report to help us improve the module. -title: "" -labels: "bug" -assignees: "" ---- - - - -### Version - -nuxt-security: -nuxt: - -### Reproduction Link - - - -### Steps to reproduce - -### What is Expected? - -### What is actually happening? diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 00000000..22e126b8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,72 @@ +name: "🐛 Bug report" +description: Report a bug to help us improve the module. +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + **IMPORTANT!** + Before reporting a bug, please make sure that you have read through our documentation and you think your problem is indeed an issue related to our module. + - type: textarea + id: env + attributes: + label: Environment + description: You can use `npx nuxi info` to fill this section + placeholder: | + - Operating System: `Darwin` + - Node Version: `v18.16.0` + - Nuxt Version: `3.7.3` + - CLI Version: `3.8.4` + - Nitro Version: `2.6.3` + - Package Manager: `pnpm@8.7.4` + - Builder: `-` + - User Config: `-` + - Runtime Modules: `-` + - Build Modules: `-` + validations: + required: true + - type: dropdown + id: options + attributes: + label: Does the bug happen with default `security` options? + options: + - My bug happens even if the `security` object is not set + - My bug happens when I set a specific option in the `security` object + validations: + required: true + - type: input + id: version + attributes: + label: Nuxt Security Version + placeholder: v2.1.5 + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Reproduction + description: Please provide a reproduction link. A minimal [reproduction is required](https://antfu.me/posts/why-reproductions-are-required) unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided we might close it. + placeholder: | + - Either a GitHub repository that can reproduce the bug + - Or a Stackblitz link to an actual reproduction + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. + validations: + required: true + - type: textarea + id: additonal + attributes: + label: Additional context + description: If applicable, add any other context or screenshots here. + - type: textarea + id: logs + attributes: + label: Logs + description: | + Optional if provided reproduction. Please try not to insert an image but copy paste the log text. + render: shell-script From 511f48700bcbdc415efb6d59f34f8688f6fbeb26 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:10:25 +0100 Subject: [PATCH 02/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 22e126b8..b8103d4b 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -47,8 +47,8 @@ body: label: Reproduction description: Please provide a reproduction link. A minimal [reproduction is required](https://antfu.me/posts/why-reproductions-are-required) unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided we might close it. placeholder: | - - Either a GitHub repository that can reproduce the bug - - Or a Stackblitz link to an actual reproduction + - Either a GitHub repository that can reproduce the bug + - Or a Stackblitz link to an actual reproduction validations: required: true - type: textarea From efce7383a9c8a7a4bddaaa1b89d3b818c9e78062 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:20:18 +0100 Subject: [PATCH 03/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index b8103d4b..dd3eca9a 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -48,7 +48,7 @@ body: description: Please provide a reproduction link. A minimal [reproduction is required](https://antfu.me/posts/why-reproductions-are-required) unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "needs reproduction" label. If no reproduction is provided we might close it. placeholder: | - Either a GitHub repository that can reproduce the bug - - Or a Stackblitz link to an actual reproduction + - Or a link to a Stackblitz playground validations: required: true - type: textarea @@ -56,13 +56,21 @@ body: attributes: label: Description description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. + placholder: | + - What happens ? + - What is expected to happen ? validations: required: true + - type: textarea - type: textarea id: additonal attributes: label: Additional context description: If applicable, add any other context or screenshots here. + placeholder: | + Ideally we need + - your full nuxt.config.ts + - screenshots of your DevTools console - type: textarea id: logs attributes: From 0e4b234018559a85b72041b15fcaa37c5aa04dc1 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:21:38 +0100 Subject: [PATCH 04/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index dd3eca9a..86429450 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -61,7 +61,6 @@ body: - What is expected to happen ? validations: required: true - - type: textarea - type: textarea id: additonal attributes: From 3e40d4b7117f83403394295a6dfbad4ac759881e Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:24:25 +0100 Subject: [PATCH 05/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 86429450..6db1852f 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -56,7 +56,7 @@ body: attributes: label: Description description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. - placholder: | + placeholder: | - What happens ? - What is expected to happen ? validations: From 41dfd3694b2c65a7a5fa21dc076607fe0eb67e87 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:27:29 +0100 Subject: [PATCH 06/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 6db1852f..4e0de791 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -26,9 +26,10 @@ body: validations: required: true - type: dropdown - id: options + id: config attributes: - label: Does the bug happen with default `security` options? + label: Security options + description: Does the bug happen when `security` is not set in nuxt.config.ts options: - My bug happens even if the `security` object is not set - My bug happens when I set a specific option in the `security` object From 191f2c7667e758db5d3d23d97cc19f4cc979cba8 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:30:59 +0100 Subject: [PATCH 07/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 4e0de791..c65d19dd 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -14,11 +14,11 @@ body: description: You can use `npx nuxi info` to fill this section placeholder: | - Operating System: `Darwin` - - Node Version: `v18.16.0` - - Nuxt Version: `3.7.3` - - CLI Version: `3.8.4` - - Nitro Version: `2.6.3` - - Package Manager: `pnpm@8.7.4` + - Node Version: `v22.11.0` + - Nuxt Version: `3.14.1592` + - CLI Version: `3.16.0` + - Nitro Version: `2.10.4` + - Package Manager: `npm@10.9.1` - Builder: `-` - User Config: `-` - Runtime Modules: `-` @@ -68,8 +68,8 @@ body: label: Additional context description: If applicable, add any other context or screenshots here. placeholder: | - Ideally we need - - your full nuxt.config.ts + Use this space to post + - your full `nuxt.config.ts` - screenshots of your DevTools console - type: textarea id: logs From d59d8e265e676ff0e82137bdaa2c3ece8f3694a2 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:31:24 +0100 Subject: [PATCH 08/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index c65d19dd..31321375 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -29,7 +29,7 @@ body: id: config attributes: label: Security options - description: Does the bug happen when `security` is not set in nuxt.config.ts + description: Does the bug happen when `security` is not set in `nuxt.config.ts` options: - My bug happens even if the `security` object is not set - My bug happens when I set a specific option in the `security` object From a2637acb759c3d50223fe06d2dc792350c9b887f Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:33:21 +0100 Subject: [PATCH 09/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 31321375..d535afe2 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -28,11 +28,11 @@ body: - type: dropdown id: config attributes: - label: Security options - description: Does the bug happen when `security` is not set in `nuxt.config.ts` + label: Security options in nuxt.config.ts + description: Tell us if the bug happens with our default `security` options options: - - My bug happens even if the `security` object is not set - - My bug happens when I set a specific option in the `security` object + - My bug happens even if the security object is not set + - My bug happens only when I set a specific option in the security object validations: required: true - type: input From cb4a4b48189d52c14d37af9c49ff354391124168 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:36:01 +0100 Subject: [PATCH 10/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index d535afe2..013ce810 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -25,23 +25,23 @@ body: - Build Modules: `-` validations: required: true + - type: input + id: version + attributes: + label: Nuxt Security Version + placeholder: v2.1.5 + validations: + required: true - type: dropdown id: config attributes: - label: Security options in nuxt.config.ts - description: Tell us if the bug happens with our default `security` options + label: Security configuration + description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - My bug happens even if the security object is not set - My bug happens only when I set a specific option in the security object validations: required: true - - type: input - id: version - attributes: - label: Nuxt Security Version - placeholder: v2.1.5 - validations: - required: true - type: textarea id: reproduction attributes: From 82caf307e02d6ccd7b5b16a41f7a9dc131fbacd0 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:40:07 +0100 Subject: [PATCH 11/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 013ce810..7a90f3fb 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -33,15 +33,20 @@ body: validations: required: true - type: dropdown - id: config + id: default attributes: - label: Security configuration + label: Default security description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - - My bug happens even if the security object is not set - - My bug happens only when I set a specific option in the security object + - Yes: My bug happens even if the security option is not set + - No: My bug happens only when I set a specific option in the security object validations: required: true + - type: textarea + id: config + attributes: + label: Security options + description: If you answered `No` to the question above, please give us your `security` settings in `nuxt.config.ts` - type: textarea id: reproduction attributes: From 7229ea127fa54ec88064cbe85a29c3eea6875285 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:41:07 +0100 Subject: [PATCH 12/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 7a90f3fb..64c72e13 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -38,8 +38,8 @@ body: label: Default security description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - - Yes: My bug happens even if the security option is not set - - No: My bug happens only when I set a specific option in the security object + - Yes, My bug happens even if the security option is not set + - No, My bug happens only when I set a specific option in the security object validations: required: true - type: textarea From 15e34bb9f87bb7ba06c7fa73108d8772385547f0 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:45:30 +0100 Subject: [PATCH 13/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 64c72e13..383eb9a7 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -5,6 +5,7 @@ body: - type: markdown attributes: value: | + ## Thank you for taking the time to fill this bug report **IMPORTANT!** Before reporting a bug, please make sure that you have read through our documentation and you think your problem is indeed an issue related to our module. - type: textarea From 51411dc4c3254d8994f1aaadecec5c2e0bee0858 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:48:03 +0100 Subject: [PATCH 14/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 383eb9a7..8fe2ffa2 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -48,6 +48,10 @@ body: attributes: label: Security options description: If you answered `No` to the question above, please give us your `security` settings in `nuxt.config.ts` + placeholder: | + security: { + ... + } - type: textarea id: reproduction attributes: @@ -74,9 +78,10 @@ body: label: Additional context description: If applicable, add any other context or screenshots here. placeholder: | - Use this space to post + If relevant, use this space to post - your full `nuxt.config.ts` - screenshots of your DevTools console + - any other information - type: textarea id: logs attributes: From cba6cceff3ada80d810bfc8d569c062a5a2da26f Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:48:47 +0100 Subject: [PATCH 15/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 8fe2ffa2..e2e83f27 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -6,6 +6,7 @@ body: attributes: value: | ## Thank you for taking the time to fill this bug report + **IMPORTANT!** Before reporting a bug, please make sure that you have read through our documentation and you think your problem is indeed an issue related to our module. - type: textarea From 046495876fc456c1aa1073c62d07378375ec0a94 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 00:59:32 +0100 Subject: [PATCH 16/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index e2e83f27..466775b2 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -4,9 +4,10 @@ labels: ["bug"] body: - type: markdown attributes: - value: | - ## Thank you for taking the time to fill this bug report - + value: ## Thank you for taking the time to fill this bug report + - type: markdown + attributes: + value: | **IMPORTANT!** Before reporting a bug, please make sure that you have read through our documentation and you think your problem is indeed an issue related to our module. - type: textarea @@ -37,18 +38,18 @@ body: - type: dropdown id: default attributes: - label: Default security + label: Custom setup description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - Yes, My bug happens even if the security option is not set - - No, My bug happens only when I set a specific option in the security object + - No, My bug happens only when I set custom values for the security option validations: required: true - type: textarea id: config attributes: label: Security options - description: If you answered `No` to the question above, please give us your `security` settings in `nuxt.config.ts` + description: If you answered **No** to the question above, please give us your `security` settings in `nuxt.config.ts` placeholder: | security: { ... From 96693c8076a574521ebfdb66eb6ae0e4f0343a45 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 01:00:16 +0100 Subject: [PATCH 17/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 466775b2..2a64beb4 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -4,7 +4,7 @@ labels: ["bug"] body: - type: markdown attributes: - value: ## Thank you for taking the time to fill this bug report + value: "## Thank you for taking the time to fill this bug report" - type: markdown attributes: value: | From b60fbf17d4a7185f3c3befdd174e15f7ef847221 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 01:01:01 +0100 Subject: [PATCH 18/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 2a64beb4..8871ade4 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -38,7 +38,7 @@ body: - type: dropdown id: default attributes: - label: Custom setup + label: Default setup used description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - Yes, My bug happens even if the security option is not set From 1307a450d3ca822cc28fdd5c530d8195d31302b2 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 01:01:36 +0100 Subject: [PATCH 19/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 8871ade4..69b81a5a 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -41,7 +41,7 @@ body: label: Default setup used description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - - Yes, My bug happens even if the security option is not set + - Yes, My bug happens even if the security option is not customized - No, My bug happens only when I set custom values for the security option validations: required: true From 3fe18e2a3aa2ce3aa2827da8bb72c3fbd6365268 Mon Sep 17 00:00:00 2001 From: vejja Date: Sun, 1 Dec 2024 01:02:14 +0100 Subject: [PATCH 20/20] Update bug-report.yml --- .github/ISSUE_TEMPLATE/bug-report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 69b81a5a..552eb976 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -41,8 +41,8 @@ body: label: Default setup used description: Tell us if the bug happens with our default `security` options in your `nuxt.config.ts` options: - - Yes, My bug happens even if the security option is not customized - - No, My bug happens only when I set custom values for the security option + - Yes, the bug happens even if the security option is not customized + - No, the bug happens only when I set custom values for the security option validations: required: true - type: textarea