mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 22:59:14 +00:00
## Summary Lower the barrier for bug reports by making custom-node info optional rather than a required prerequisite. Many users run custom nodes and can still hit core or interaction bugs that aren't caused by those nodes; even when custom nodes are involved, the issue may still be ours, so this change unblocks reports and feature requests while preserving context. ## Changes - **What**: Replace the required "tested with all custom nodes disabled" checkbox with a neutral "I'm using custom nodes" checkbox to capture context without blocking submissions. ## Review Focus Confirm the new checkbox wording captures custom-node context without discouraging reports from users who can't or shouldn't disable custom nodes. <!-- If this PR fixes an issue, uncomment and update the line below --> <!-- Fixes #ISSUE_NUMBER --> ## Screenshots (if applicable) <!-- Add screenshots or video recording to help explain your changes --> ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8546-fix-make-custom-nodes-checkbox-optional-2fb6d73d3650816fa743e355f1877de1) by [Unito](https://www.unito.io) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Documentation** * Updated the bug report issue template to clarify prerequisites: the primary prerequisite remains required, while the custom-nodes option is now optional. This reduces mandatory checklist items and improves guidance on which setup details are essential for effective bug reports. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
103 lines
2.6 KiB
YAML
103 lines
2.6 KiB
YAML
name: Bug Report
|
|
description: 'Report something that is not working correctly'
|
|
labels: ['Potential Bug']
|
|
type: Bug
|
|
|
|
body:
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Prerequisites
|
|
options:
|
|
- label: I am running the latest version of ComfyUI
|
|
required: true
|
|
- label: I have custom nodes enabled
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: What happened?
|
|
description: A clear and concise description of the bug. Include screenshots or videos if helpful.
|
|
placeholder: |
|
|
Example: "When I connect a VAE Decode node to a KSampler, the connection line appears but the workflow fails to execute with an error message..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduce
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: How can we reproduce this issue? Please attach your workflow (JSON or PNG).
|
|
placeholder: |
|
|
1. Add a KSampler node
|
|
2. Connect it to...
|
|
3. Click Queue Prompt
|
|
4. See error
|
|
value: |
|
|
1.
|
|
2.
|
|
3.
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: severity
|
|
attributes:
|
|
label: How is this affecting you?
|
|
options:
|
|
- Crashes ComfyUI completely
|
|
- Workflow won't execute
|
|
- Feature doesn't work as expected
|
|
- Visual/UI issue only
|
|
- Minor inconvenience
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: ComfyUI Frontend Version
|
|
description: Found in Settings > About (e.g., "1.3.45")
|
|
placeholder: '1.3.45'
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: browser
|
|
attributes:
|
|
label: Browser
|
|
description: Which browser are you using?
|
|
options:
|
|
- Chrome/Chromium
|
|
- Firefox
|
|
- Safari
|
|
- Edge
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## Additional Information (Optional)
|
|
*The following fields help us debug complex issues but are not required for most bug reports.*
|
|
|
|
- type: textarea
|
|
id: console-errors
|
|
attributes:
|
|
label: Console Errors
|
|
description: If you see red error messages in the browser console (F12), paste them here
|
|
render: javascript
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs
|
|
description: If relevant, paste any terminal/server logs here
|
|
render: shell
|
|
|
|
- type: textarea
|
|
id: additional
|
|
attributes:
|
|
label: Additional Context
|
|
description: Any other information that might help (OS, GPU, specific nodes involved, etc.)
|