From 521c0eb600b812c128ee126e0dfd7be426887cad Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 14 Jul 2023 22:17:39 -0700 Subject: [PATCH] Fix text areas in issue templates. --- .gitea/issue_template/bug_template.yaml | 10 +++++----- .gitea/issue_template/feature_template.yaml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/issue_template/bug_template.yaml b/.gitea/issue_template/bug_template.yaml index dd76efda..d1ef8aef 100644 --- a/.gitea/issue_template/bug_template.yaml +++ b/.gitea/issue_template/bug_template.yaml @@ -1,33 +1,33 @@ name: "Bug or question/support" about: "For filing a bug or getting support" body: - - type: markdown + - type: textarea id: problem attributes: label: What I'm trying to do and why validations: required: true - - type: markdown + - type: textarea id: repro_steps attributes: label: Steps to reproduce description: Include (sanitized) borgmatic configuration files if applicable. validations: required: false - - type: markdown + - type: textarea id: actual_behavior attributes: label: Actual behavior description: Include (sanitized) `--verbosity 2` output if applicable. validations: required: false - - type: markdown + - type: textarea id: expected_behavior attributes: label: Expected behavior validations: required: false - - type: markdown + - type: textarea id: notes attributes: label: Other notes / implementation ideas diff --git a/.gitea/issue_template/feature_template.yaml b/.gitea/issue_template/feature_template.yaml index bde5a6de..ac4c38f5 100644 --- a/.gitea/issue_template/feature_template.yaml +++ b/.gitea/issue_template/feature_template.yaml @@ -1,13 +1,13 @@ name: "Feature" about: "For filing a feature request or idea" body: - - type: markdown + - type: textarea id: request attributes: label: What I'd like to do and why validations: required: true - - type: markdown + - type: textarea id: notes attributes: label: Other notes / implementation ideas