chore: replace all cn comments of fe to en version by volc api (#320)

This commit is contained in:
tecvan
2025-07-31 10:32:15 +08:00
committed by GitHub
parent 716ec0cba8
commit 71f6245a01
2960 changed files with 15545 additions and 15545 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
// workflow store,目前保存 flow 的 nodes edges 数据
// Workflow store, currently holds the nodes and edges data of the flow
import { devtools } from 'zustand/middleware';
import { create } from 'zustand';
@@ -24,13 +24,13 @@ import {
} from '@flowgram-adapter/free-layout-editor';
interface WorkflowStoreState {
/** 节点数据 */
/** node data */
nodes: WorkflowNodeJSON[];
/** 边数据 */
/** edge data */
edges: WorkflowEdgeJSON[];
/** 是否在创建 workflow */
/** Are you creating a workflow? */
isCreatingWorkflow: boolean;
}