From cce628086058d63b3f382c38fab0e967f4979dc2 Mon Sep 17 00:00:00 2001 From: Utpal Sen Date: Sat, 1 Aug 2026 22:33:42 +0530 Subject: [PATCH] Use placeholder instead of value in issue templates Replace attributes.value with attributes.placeholder across form fields in bug and feature issue templates so default guidance text acts as hint text rather than pre-filled editable text (Fixes #609). Also fix minor typos (Consisely -> Concisely, folow -> follow, a LLM -> an LLM) and remove a duplicate text fragment in bug.yaml. Fixes: #609 Signed-off-by: Utpal Sen --- .github/ISSUE_TEMPLATE/bug.yaml | 8 ++++---- .github/ISSUE_TEMPLATE/feature.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index d17f0952c3..61e4d669f7 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -4,12 +4,12 @@ title: "[Bug]: " body: - type: textarea attributes: - label: Consisely describe the issue - value: Consisely describe the issue, and what page it is on. Consisely describe the feature. Do not use a LLM. + label: Concisely describe the issue + placeholder: Concisely describe the issue, and what page it is on. Do not use an LLM. - type: textarea attributes: label: Upload screenshots or screen recordings - value: Add screenshots or screen recordings to help explain your problem. + placeholder: Add screenshots or screen recordings to help explain your problem. validations: required: false - type: checkboxes @@ -17,5 +17,5 @@ body: attributes: label: LLM Policy options: - - label: This issue is human-written, and folow up comments will also be human-written + - label: This issue is human-written, and follow up comments will also be human-written required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml index d2aa4a73d3..dc3a21d21e 100644 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -4,12 +4,12 @@ title: "[Feature]: " body: - type: textarea attributes: - label: Consisely describe the feature. - value: Consisely describe the feature. Do not use a LLM. + label: Concisely describe the feature + placeholder: Concisely describe the feature. Do not use an LLM. - type: textarea attributes: label: Upload screenshots - value: Add screenshots or proposed mockups (optional). + placeholder: Add screenshots or proposed mockups (optional). validations: required: false - type: checkboxes @@ -17,5 +17,5 @@ body: attributes: label: LLM Policy options: - - label: This issue is human-written, and folow up comments will also be human-written + - label: This issue is human-written, and follow up comments will also be human-written required: true