Просмотр исходного кода

fix(types): 修改IConditionInfoItem接口字段名称

LuoHaoxuan 3 лет назад
Родитель
Сommit
c7186ade53
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      types/src/interface/process.ts

+ 1 - 1
types/src/interface/process.ts

@@ -143,7 +143,7 @@ export interface IConditionItem {
 // 3合1分支条件信息
 export interface IConditionInfoItem {
   ID: string;
-  condition: IConditionItem[];
+  conditions: IConditionItem[];
   // eslint-disable-next-line prettier/prettier, no-use-before-define
   process: IProcedureProcess[];
 }