From 0804f1e8e92af46a11ad97e81daa1cb7f78f729d Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Tue, 28 Dec 2021 10:20:14 -0500 Subject: [PATCH] Update dropdown in the product submission form Update the product update dropdown's label and options. Mainly focused on removing usage of Yes/No because these are boolean values in YAML and thus needed special handling compared to other strings. Co-authored-by: dav3r Co-authored-by: Shane Frasier --- .github/ISSUE_TEMPLATE/product-submission-form.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/product-submission-form.yml b/.github/ISSUE_TEMPLATE/product-submission-form.yml index af54400..0504f98 100644 --- a/.github/ISSUE_TEMPLATE/product-submission-form.yml +++ b/.github/ISSUE_TEMPLATE/product-submission-form.yml @@ -51,11 +51,11 @@ body: - type: dropdown id: product-updated attributes: - label: Product update available + label: Product update description: Is there an update available for the product? options: - - "Yes" - - "No" + - Available + - Not Available validations: required: true - type: input