|
| 1 | +name: Bug Report |
| 2 | +description: Submit a bug report for a frontend UI library. |
| 3 | +title: "[Bug] Brief Title of the Issue" |
| 4 | +body: |
| 5 | + - type: dropdown |
| 6 | + id: will-contribute |
| 7 | + attributes: |
| 8 | + label: Willing to Contribute to the Fix? |
| 9 | + description: If you're planning to assist in fixing this issue, please let us know so we can avoid duplicating efforts. |
| 10 | + options: |
| 11 | + - "Yes" |
| 12 | + - "No" |
| 13 | + - Maybe |
| 14 | + default: 0 |
| 15 | + validations: |
| 16 | + required: true |
| 17 | + - type: markdown |
| 18 | + attributes: |
| 19 | + value: | |
| 20 | + Thank you for taking the time to submit this UI bug report! Please provide as much detail as possible to help us resolve the issue quickly. |
| 21 | + - type: input |
| 22 | + id: contact |
| 23 | + attributes: |
| 24 | + label: Contact Information |
| 25 | + description: How can we reach you if we need more information? |
| 26 | + placeholder: E.g., [email protected] |
| 27 | + validations: |
| 28 | + required: false |
| 29 | + - type: textarea |
| 30 | + id: what-happened |
| 31 | + attributes: |
| 32 | + label: What Happened? |
| 33 | + description: What UI issue did you encounter? Please describe the specific behavior. |
| 34 | + placeholder: E.g., Button unresponsive, text overflow, etc. |
| 35 | + value: "UI issue occurred!" |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + - type: textarea |
| 39 | + id: expected-behavior |
| 40 | + attributes: |
| 41 | + label: Expected Behavior |
| 42 | + description: How should the UI element appear or behave? |
| 43 | + placeholder: Please describe the expected UI behavior. |
| 44 | + value: "The button should be clickable, the text should fit the container." |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + - type: dropdown |
| 48 | + id: browsers |
| 49 | + attributes: |
| 50 | + label: In which browsers did you observe this issue? |
| 51 | + multiple: true |
| 52 | + options: |
| 53 | + - Firefox |
| 54 | + - Chrome |
| 55 | + - Safari |
| 56 | + - Microsoft Edge |
| 57 | + description: Please select the browsers where the issue occurred. |
| 58 | + validations: |
| 59 | + required: false |
| 60 | + - type: textarea |
| 61 | + id: steps-to-reproduce |
| 62 | + attributes: |
| 63 | + label: Steps to Reproduce |
| 64 | + description: Please provide the specific steps to reproduce this issue. |
| 65 | + placeholder: E.g., 1. Click the button 2. Error message appears |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + - type: textarea |
| 69 | + id: logs |
| 70 | + attributes: |
| 71 | + label: Browser Console Logs (if any) |
| 72 | + description: If you saw any errors in the browser console, please paste the relevant logs here. |
| 73 | + placeholder: Please copy and paste the related console logs. |
| 74 | + render: shell |
| 75 | + - type: checkboxes |
| 76 | + id: terms |
| 77 | + attributes: |
| 78 | + label: Code of Conduct |
| 79 | + description: By submitting this issue, you agree to follow the project's code of conduct. |
| 80 | + options: |
| 81 | + - label: I agree to follow the project's code of conduct |
| 82 | + required: true |
0 commit comments