Skip to content

Commit

Permalink
Split "Context" textarea field into several required input fields (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgfilim1 committed Jul 23, 2022
1 parent b3263f9 commit c6a3ee0
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/ISSUE_TEMPLATE/bug.yaml
Expand Up @@ -12,16 +12,31 @@ body:
- label: I have searched in the issue tracker for similar bug reports, including closed ones
required: true

- type: textarea
- type: markdown
attributes:
label: Context
description: |
Please provide as much information as possible. This will help us to reproduce the issue and fix it.
value: |
- Operating system: e.g. Ubuntu 20.04.2 LTS
- Python Version: e.g. 3.10.1
- aiogram version: e.g. 2.21 or 3.0b3
- aiohttp version: e.g. 3.8.1
## Context
Please provide as much information as possible. This will help us to reproduce the issue and fix it.
- type: input
attributes:
label: Operating system
placeholder: e.g. Ubuntu 20.04.2 LTS
validations:
required: true

- type: input
attributes:
label: Python version
placeholder: e.g. 3.10.1
validations:
required: true

- type: input
attributes:
label: aiogram version
placeholder: e.g. 2.21 or 3.0b3
validations:
required: true

Expand Down

0 comments on commit c6a3ee0

Please sign in to comment.