| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- name: Bug Report
- description: Report a bug or unexpected behavior
- title: "[Bug]: "
- labels: ["bug"]
- body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to report a bug! Please fill out the information below to help us investigate.
- - type: textarea
- id: description
- attributes:
- label: Bug Description
- description: A clear and concise description of the bug.
- placeholder: Describe what happened...
- validations:
- required: true
- - type: textarea
- id: steps
- attributes:
- label: Steps to Reproduce
- description: How can we reproduce this issue?
- placeholder: |
- 1. Go to '...'
- 2. Click on '...'
- 3. See error
- validations:
- required: true
- - type: textarea
- id: expected
- attributes:
- label: Expected Behavior
- description: What did you expect to happen?
- validations:
- required: true
- - type: textarea
- id: actual
- attributes:
- label: Actual Behavior
- description: What actually happened?
- validations:
- required: true
- - type: dropdown
- id: deployment
- attributes:
- label: Deployment Method
- options:
- - Local development (npm run dev / pnpm dev / yarn dev)
- - Vercel deployment
- - Docker
- - Other
- validations:
- required: true
- - type: input
- id: browser
- attributes:
- label: Browser
- description: Which browser are you using?
- placeholder: e.g. Chrome 120, Firefox 121, Safari 17
- - type: input
- id: os
- attributes:
- label: Operating System
- placeholder: e.g. macOS 14.2, Windows 11, Ubuntu 22.04
- - type: textarea
- id: logs
- attributes:
- label: Relevant Logs / Screenshots
- description: Paste any error messages, console logs, or screenshots.
- render: shell
- - type: textarea
- id: additional
- attributes:
- label: Additional Context
- description: Any other information that might be helpful.
|