split out expected & actual behavior fields

This commit is contained in:
taylrfnt
2025-05-03 21:22:49 -05:00
parent 9c2f8d8ad3
commit 6ffb6207e7

View File

@@ -14,8 +14,6 @@ body:
description: |
Provide a detailed description of the issue. Include relevant information, such as:
- The feature or configuration option you encounter the issue with.
- The expected behavior.
- The actual behavior (and how it deviates from the expected behavior, if it is not immediately obvious).
- Screenshots, screen recordings, or other supporting media (as needed).
- If this is a regression of an existing issue that was closed or resolved, please include the previous item reference (Discussion, Issue, PR, commit) in your description.
@@ -31,6 +29,26 @@ body:
Example: When using SSH to connect to my remote Linux machine from my local macOS device in Ghostty, I try to run `clear`, and the screen does not clear. Instead, I see the following error message printed to the terminal: `Error opening terminal: xterm-ghostty.`
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: |
Provide a summary of how you expect Ghostty to behave in this situation. Include any relevant documentation links.
placeholder: |
Example: When I run `clear`, I expect the screen to be cleared and the prompt to be redrawn at the top of the window.
render: text
validations:
required: true
- type: textarea
attributes:
label: Actual Behavior
description: |
Provide a summary of how Ghostty actually behaves in this situation. If it is not immediately obvious how the actual behavior differs from the expected behavior described above, please be sure to mention the deviation specifically.
placeholder: |
Example: When I run `clear`, the screen is not cleared, and an error is printed: `Error opening terminal: xterm-ghostty.`
render: text
validations:
required: true
- type: textarea
attributes:
label: Reproduction Steps