File size: 2,385 Bytes
5f685fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
name: 🐛 Bug Report
description: File a bug report
title: '🐛 [Bug]: '
labels: ['bug']
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe the issue here.
placeholder: Tell us what you see!
validations:
required: true
- type: dropdown
id: browsers
attributes:
label: What type of browser are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
validations:
required: true
- type: dropdown
id: operating-systems
attributes:
label: What type of Operating System are you seeing the problem on?
multiple: true
options:
- Linux
- Windows
- Mac
- Google Colab
- Other
validations:
required: true
- type: input
id: python-version
attributes:
label: Python Version
description: What version of Python are you using?
placeholder: e.g. Python 3.9.0
validations:
required: true
- type: input
id: application-version
attributes:
label: Application Version
description: What version of the application are you using?
placeholder: e.g. v1.2.3
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: What did you expect?
validations:
required: true
- type: textarea
id: error-message
attributes:
label: Error Message
description: What error message did you receive?
placeholder:
render: shell
validations:
required: false
- type: textarea
id: logs
attributes:
label: Code to produce this issue.
description: Please copy and paste any relevant code to re-produce this issue.
render: shell
- type: textarea
id: screenshots-assets
attributes:
label: Screenshots/Assets/Relevant links
description: If applicable, add screenshots, assets or any relevant links that can help understand the issue.
placeholder: Provide any relevant material here
validations:
required: false
|