From 807513a47eb01193e228cc5cb8b55630bde40cf1 Mon Sep 17 00:00:00 2001 From: Isaac Gray-Christensen Date: Wed, 17 Jan 2024 14:54:32 -0800 Subject: [PATCH] removed non-working markdown field from bug template --- .github/ISSUE_TEMPLATE/1-bug_template.yml | 44 ++++++++++++++--------- 1 file changed, 28 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1-bug_template.yml b/.github/ISSUE_TEMPLATE/1-bug_template.yml index 1ac9cf3a..caf9297e 100644 --- a/.github/ISSUE_TEMPLATE/1-bug_template.yml +++ b/.github/ISSUE_TEMPLATE/1-bug_template.yml @@ -4,24 +4,36 @@ title: '🐛 [Bug] - ' labels: ['bug'] body: - - type: markdown + - type: textarea + id: expected_behavior attributes: - value: | - ### Expected Behavior - --- + label: 'Expected Behavior' + description: What was the expected behavior? + placeholder: "..." + validations: + required: false + + - type: textarea + id: current_behavior + attributes: + label: 'Current Behavior' + description: What is the current behavior? + placeholder: "..." + validations: + required: false - ### Current Behavior - --- - - ### Steps to Reproduce - --- - - Please try to describe the issue as best as possible - - 1. Go to '...' - 2. Click on '....' - 3. Scroll down to '....' - 4. See error + - type: textarea + id: steps_to_reproduce + attributes: + label: 'Steps to Reproduce' + description: Please try to describe the issue as best as possible + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: false - type: input id: version