|
1 | | -name: Bug Report |
2 | | -description: File a bug report |
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report a bug or issue with Magic Editor X |
3 | 3 | title: '[Bug]: ' |
| 4 | +labels: ['bug', 'needs-triage'] |
4 | 5 | body: |
5 | 6 | - type: markdown |
6 | 7 | attributes: |
7 | 8 | value: | |
8 | | - Thanks for taking the time to fill out this bug report! |
| 9 | + ## Thanks for taking the time to report a bug! |
| 10 | + |
| 11 | + Please fill out the information below to help us reproduce and fix the issue. |
| 12 | + |
9 | 13 | - type: textarea |
10 | | - id: issue-experiencing |
| 14 | + id: bug-description |
11 | 15 | attributes: |
12 | | - label: What issue are you experiencing? |
13 | | - description: A detailed explanation of the issue |
| 16 | + label: 🐛 Bug Description |
| 17 | + description: A clear and concise description of what the bug is |
| 18 | + placeholder: Describe the bug you're experiencing... |
14 | 19 | validations: |
15 | 20 | required: true |
| 21 | + |
| 22 | + - type: textarea |
| 23 | + id: expected-behavior |
| 24 | + attributes: |
| 25 | + label: ✅ Expected Behavior |
| 26 | + description: What did you expect to happen? |
| 27 | + placeholder: Describe what should happen... |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + |
| 31 | + - type: textarea |
| 32 | + id: actual-behavior |
| 33 | + attributes: |
| 34 | + label: ❌ Actual Behavior |
| 35 | + description: What actually happened? |
| 36 | + placeholder: Describe what actually happened... |
| 37 | + validations: |
| 38 | + required: true |
| 39 | + |
16 | 40 | - type: textarea |
17 | 41 | id: reproduction-steps |
18 | 42 | attributes: |
19 | | - label: Steps To Reproduce |
20 | | - description: Steps to reproduce the behavior. |
| 43 | + label: 🔄 Steps To Reproduce |
| 44 | + description: Steps to reproduce the behavior |
21 | 45 | placeholder: | |
22 | | - 1. In this environment... |
23 | | - 2. With this config... |
24 | | - 3. Run '...' |
| 46 | + 1. Open the editor... |
| 47 | + 2. Add a block/tool... |
| 48 | + 3. Perform action... |
25 | 49 | 4. See error... |
26 | 50 | validations: |
27 | | - required: false |
| 51 | + required: true |
| 52 | + |
| 53 | + - type: dropdown |
| 54 | + id: feature-area |
| 55 | + attributes: |
| 56 | + label: 📦 Feature Area |
| 57 | + description: Which feature is affected? |
| 58 | + options: |
| 59 | + - Editor.js Core |
| 60 | + - Editor Tools (Header, List, Image, etc.) |
| 61 | + - Media Library Integration |
| 62 | + - Live Collaboration |
| 63 | + - AI Assistant |
| 64 | + - Custom Tools/Buttons |
| 65 | + - Saving/Loading Content |
| 66 | + - Other |
| 67 | + validations: |
| 68 | + required: true |
| 69 | + |
28 | 70 | - type: input |
29 | 71 | id: plugin-version |
30 | 72 | attributes: |
31 | | - label: What version of the plugin are you using? |
| 73 | + label: 📦 Plugin Version |
| 74 | + description: Which version of magic-editor-x are you using? |
| 75 | + placeholder: e.g. 1.0.0 |
32 | 76 | validations: |
33 | 77 | required: true |
| 78 | + |
34 | 79 | - type: input |
35 | 80 | id: strapi-version |
36 | 81 | attributes: |
37 | | - label: What strapi version are you using? |
| 82 | + label: 🚀 Strapi Version |
| 83 | + description: Which version of Strapi are you using? |
| 84 | + placeholder: e.g. 5.31.2 |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + |
| 88 | + - type: input |
| 89 | + id: node-version |
| 90 | + attributes: |
| 91 | + label: 🟢 Node Version |
| 92 | + description: Which version of Node.js are you using? |
| 93 | + placeholder: e.g. 20.19.4 |
38 | 94 | validations: |
39 | 95 | required: true |
| 96 | + |
| 97 | + - type: dropdown |
| 98 | + id: browser |
| 99 | + attributes: |
| 100 | + label: 🌐 Browser |
| 101 | + description: Which browser are you using? |
| 102 | + options: |
| 103 | + - Chrome |
| 104 | + - Firefox |
| 105 | + - Safari |
| 106 | + - Edge |
| 107 | + - Other |
| 108 | + validations: |
| 109 | + required: false |
| 110 | + |
| 111 | + - type: textarea |
| 112 | + id: error-logs |
| 113 | + attributes: |
| 114 | + label: 📋 Error Logs |
| 115 | + description: Please paste any relevant error logs (check browser console) |
| 116 | + placeholder: Paste error logs here... |
| 117 | + render: shell |
| 118 | + validations: |
| 119 | + required: false |
| 120 | + |
| 121 | + - type: textarea |
| 122 | + id: editor-config |
| 123 | + attributes: |
| 124 | + label: ⚙️ Editor Configuration |
| 125 | + description: Your editor configuration (if relevant) |
| 126 | + placeholder: | |
| 127 | + // Custom field configuration |
| 128 | + { |
| 129 | + type: 'customField', |
| 130 | + name: 'magic-editor-x', |
| 131 | + options: { |
| 132 | + // your config here |
| 133 | + } |
| 134 | + } |
| 135 | + render: javascript |
| 136 | + validations: |
| 137 | + required: false |
| 138 | + |
| 139 | + - type: textarea |
| 140 | + id: additional-context |
| 141 | + attributes: |
| 142 | + label: 📝 Additional Context |
| 143 | + description: Add any other context, screenshots, or videos |
| 144 | + placeholder: Any additional information that might help... |
| 145 | + validations: |
| 146 | + required: false |
| 147 | + |
| 148 | + - type: checkboxes |
| 149 | + id: terms |
| 150 | + attributes: |
| 151 | + label: ✔️ Checklist |
| 152 | + description: Please confirm the following |
| 153 | + options: |
| 154 | + - label: I have searched for similar issues before creating this one |
| 155 | + required: true |
| 156 | + - label: I have provided all the required information above |
| 157 | + required: true |
| 158 | + - label: I have removed any sensitive information from logs |
| 159 | + required: true |
0 commit comments