fix: align BOUNDING_BOX type with backend and target ImageCropV2 node (#8531)

## Summary
- Update imageCrop extension to target new ImageCropV2 comfyClass
- Fix BOUNDING_BOX io_type mismatch (was BOUNDINGBOX, backend sends
BOUNDING_BOX)
- Keep old ImageCrop node_id unchanged for backward compatibility

BE Changes is https://github.com/Comfy-Org/ComfyUI/pull/11594

┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-8531-fix-align-BOUNDING_BOX-type-with-backend-and-target-ImageCropV2-node-2fa6d73d36508160a06ad06108b8a15e)
by [Unito](https://www.unito.io)
This commit is contained in:
Terry Jia
2026-02-02 04:03:55 -05:00
committed by GitHub
parent d34d6a8a92
commit 4e9f581625
4 changed files with 4 additions and 4 deletions

View File

@@ -172,7 +172,7 @@ const coreWidgetDefinitions: Array<[string, WidgetDefinition]> = [
'boundingbox',
{
component: WidgetBoundingBox,
aliases: ['BOUNDINGBOX'],
aliases: ['BOUNDING_BOX'],
essential: false
}
]