@@ -376,32 +272,6 @@ export function EdgeSettingsPanel({
)}
-
-
}
- title="过渡语"
- description="命中连接后、进入下一节点前播放的固定内容"
- >
-
-
);
}
diff --git a/frontend/src/components/workflow/specs.ts b/frontend/src/components/workflow/specs.ts
index bf6aef7..381a9c0 100644
--- a/frontend/src/components/workflow/specs.ts
+++ b/frontend/src/components/workflow/specs.ts
@@ -121,11 +121,11 @@ export type ExpressionRule = {
export type WorkflowEdgeData = {
mode: EdgeMode;
+ /** Internal route order, assigned automatically when an edge is created. */
priority: number;
condition?: string;
expression?: { combinator: "and" | "or"; rules: ExpressionRule[] };
label?: string;
- transitionSpeech?: string;
};
export type FieldSpec = {