Skip to content

Add IDs to forms' text areas #4452

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ body:
- type: textarea
attributes:
label: Summary
id: summary
description: Explain the problem briefly below.
placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
validations:
required: true
- type: textarea
attributes:
label: PowerShell Version
id: powershell-version
description: Paste verbatim output from `$PSVersionTable` below. Please double-check that this is the PowerShell version that VS Code is set to use.
render: console
placeholder: |
Expand All @@ -44,6 +46,7 @@ body:
- type: textarea
attributes:
label: Visual Studio Code Version
id: vscode-version
description: Paste verbatim output from `code --version` below.
render: console
placeholder: |
Expand All @@ -57,6 +60,7 @@ body:
- type: textarea
attributes:
label: Extension Version
id: extension-version
description: Paste verbatim output from `code --list-extensions --show-versions | Select-String powershell` below.
render: console
placeholder: |
Expand All @@ -68,14 +72,17 @@ body:
- type: textarea
attributes:
label: Steps to Reproduce
id: steps-to-reproduce
description: List of steps, sample code, failing test or link to a project that reproduces the behavior. Make sure you place a stack trace inside a code (```) block to avoid linking unrelated issues.
validations:
required: true
- type: textarea
attributes:
label: Visuals
id: visuals
description: Please upload images or animations that can be used to reproduce issues in the area below. Try the [Steps Recorder](https://support.microsoft.com/en-us/windows/record-steps-to-reproduce-a-problem-46582a9b-620f-2e36-00c9-04e25d784e47) on Windows or [Screenshot](https://support.apple.com/en-us/HT208721) on macOS.
- type: textarea
attributes:
label: Logs
id: logs
description: Please upload logs collected by following these [instructions](https://github.com/PowerShell/vscode-powershell/blob/main/docs/troubleshooting.md#logs) in the area below. Be careful to scrub sensitive information!
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ body:
- type: textarea
attributes:
label: Summary
id: summary
description: Explain the feature request below.
placeholder: I would like to do X because it would be useful for Y and I cannot currently do it with Z.
validations:
required: true
- type: textarea
attributes:
label: Proposed Design
id: proposed-design
description: Optionally explain any technical design below.
placeholder: We could accomplish this by extending X to take Y and yield Z.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
},
{
"command": "PowerShell.GenerateBugReport",
"title": "Upload Bug Report to Github",
"title": "Upload Bug Report to GitHub",
"category": "PowerShell"
},
{
Expand Down