mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
## Summary Disables the legacy "node templates" feature on ComfyUI Cloud. This feature is accessed via right-clicking on the canvas and is distinct from both subgraphs and workflow templates. ## Problem The legacy node templates feature presents false-positive errors on cloud: - Errors appear when no existing templates exist initially - After refresh, workflow progress is lost from workflow tabs - Node templates fail to delete (except the first one) ## Solution Conditionally load the `nodeTemplates` extension only for non-cloud builds by wrapping the import in `if (!isCloud)`. ## Testing - [ ] Verify right-click canvas menu no longer shows "Node Templates" submenu on cloud - [ ] Verify right-click canvas menu no longer shows "Save Selected as Template" on cloud - [ ] Verify the feature still works on desktop/OSS builds ## Related - Refs: COM-14105 - Related issue: #4056 (Migrate Node Templates to Workflows) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8462-fix-cloud-disable-legacy-node-templates-feature-on-cloud-2f86d73d36508162948cc897d4c7ef5e) by [Unito](https://www.unito.io) Co-authored-by: Amp <amp@ampcode.com>
Core Extensions
This directory contains the core extensions that provide essential functionality to the ComfyUI frontend.
📚 Full Documentation
The complete documentation for core extensions has been moved to:
Quick Reference
This directory contains built-in extensions that ship with ComfyUI, including:
- Image Processing: maskeditor, uploadImage, saveImageExtraOutput, clipspace
- Graph Management: groupNode, groupNodeManage, groupOptions, rerouteNode, noteNode
- Input Handling: widgetInputs, uploadAudio, webcamCapture, simpleTouchSupport
- UI Enhancements: contextMenuFilter, previewAny, nodeTemplates
- Text Processing: dynamicPrompts, editAttention
- Platform Support: electronAdapter
and more.
See Also
- Extension Development Guide - How to develop extensions
- Extension Documentation Index - Overview of all extension docs
- ComfyExtension Interface - TypeScript interface for extensions