From a8060844041c89bdddf8089cc42a59b8484071c3 Mon Sep 17 00:00:00 2001 From: Richard McCarthy Date: Thu, 19 Oct 2023 14:01:19 +0100 Subject: [PATCH] convert checkboxes into dropdowns with multiple answers allowed --- .github/ISSUE_TEMPLATE/bug-report.yaml | 37 ++++++++++++++------------ 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index b5b5ddc1ce..9c9e295550 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -48,14 +48,15 @@ body: placeholder: For example, 32.2.7 validations: required: true - - type: checkboxes + - type: dropdown id: device attributes: label: What devices are you seeing the problem on? options: - - label: Desktop - - label: Mobile - - label: Tablet + - Desktop + - Mobile + - Tablet + multiple: true - type: input id: device-details attributes: @@ -63,16 +64,17 @@ body: description: Here you can provide further information about the device(s) that are affected by this bug or issue. validations: required: false - - type: checkboxes + - type: dropdown id: operating-system attributes: label: What operating systems are you seeing the problem on? options: - - label: Windows - - label: macOS - - label: Android - - label: iOS - - label: Other + - Windows + - macOS + - Android + - iOS + - Other + multiple: true - type: input id: operating-system-details attributes: @@ -80,17 +82,18 @@ body: description: Here you can provide further information about the operating system(s) that are affected by this bug or issue. validations: required: false - - type: checkboxes + - type: dropdown id: browsers attributes: label: What browsers are you seeing the problem on? options: - - label: Firefox - - label: Chrome - - label: Safari - - label: Microsoft Edge - - label: Microsoft Internet Explorer - - label: Other + - Firefox + - Chrome + - Safari + - Microsoft Edge + - Microsoft Internet Explorer + - Other + multiple: true - type: input id: browsers-details attributes: