From 03054b88aadb463fce03d85e45561c0cdb5209b3 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 8 Mar 2021 14:39:26 -0500 Subject: [PATCH] Fix 'steps to reproduce' placeholder and required fields --- .github/ISSUE_TEMPLATE/bug_report.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 97709e103..d5f4c5dad 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -35,10 +35,6 @@ body: 1. Click on "create widget" 2. Set foo to 12 and bar to G 3. Click the "create" button - value: | - 1. - 2. - 3. validations: required: true - type: textarea @@ -46,8 +42,12 @@ body: label: Expected Behavior description: "What did you expect to happen?" placeholder: "A new widget should have been created with the specified attributes" + validations: + required: true - type: textarea attributes: label: Observed Behavior description: "What happened instead?" placeholder: "A TypeError exception was raised" + validations: + required: true