Warp/.github/ISSUE_TEMPLATE/01_bug_report.yml
pseudometa 9d4f248f3a
Removes shell syntax highlighting from text code blocks (#800)
* No syntax highlighting in text code blocks

Since you are using the code blocks for text input and not code, setting the language to shell actually leads to undesired syntax highlighting. using "text" as rendering language fixes this.

* Update 02_feature_request.yml

Co-authored-by: elvis kahoro <elvis@warp.dev>
2022-03-11 17:24:23 -05:00

67 lines
1.8 KiB
YAML

name: Bug Report
description: "Found a bug? Help us by reporting it, we'd love if you'd first take a look through our open issues, to make sure the issue isn't already filed."
body:
- type: textarea
id: "describe-the-bug"
attributes:
label: "Describe the bug"
description: "A clear and concise description of what the bug is."
placeholder: Tell us what you see.
render: text
validations:
required: true
- type: textarea
id: "to-reproduce"
attributes:
label: "To Reproduce"
value: |
Steps to reproduce:
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error '...'
validations:
required: false
- type: textarea
id: "expected-behaviour"
attributes:
label: "Expected behaviour"
description: "A clear and concise description of what you expected to happen."
placeholder: Tell us what you expect to see.
render: text
validations:
required: false
- type: textarea
id: "screenshots"
attributes:
label: "Screenshots"
description: "If applicable, add screenshots to help explain your problem."
validations:
required: false
- type: dropdown
id: "os"
attributes:
label: "Operating System"
multiple: false
options:
- MacOS
# - Windows
# - Linux
validations:
required: false
- type: input
id: "os-version"
attributes:
label: "OS Version"
description: "For example, `11.4`."
validations:
required: false
- type: textarea
id: "additional-context"
attributes:
label: "Additional context"
description: "Add any other context about the problem here."
render: text
validations:
required: false