fix: 修复框架创建oper时因为不存在checker而导致iState为null的情况
This commit is contained in:
parent
e5b005b067
commit
1abb39e7a5
|
|
@ -1311,6 +1311,7 @@ class CascadeStore extends RowStore_1.RowStore {
|
|||
operatorId,
|
||||
targetEntity: entity,
|
||||
bornAt,
|
||||
iState: 'normal',
|
||||
operEntity$oper: data instanceof Array ? [{
|
||||
id: 'dummy',
|
||||
action: 'create',
|
||||
|
|
@ -1450,6 +1451,7 @@ class CascadeStore extends RowStore_1.RowStore {
|
|||
targetEntity: entity,
|
||||
bornAt,
|
||||
operatorId,
|
||||
iState: 'normal',
|
||||
operEntity$oper: [{
|
||||
id: 'dummy',
|
||||
action: 'create',
|
||||
|
|
|
|||
|
|
@ -1596,6 +1596,7 @@ export abstract class CascadeStore<ED extends EntityDict & BaseEntityDict> exten
|
|||
operatorId,
|
||||
targetEntity: entity as string,
|
||||
bornAt,
|
||||
iState: 'normal',
|
||||
operEntity$oper: data instanceof Array ? [{
|
||||
id: 'dummy',
|
||||
action: 'create',
|
||||
|
|
@ -1745,6 +1746,7 @@ export abstract class CascadeStore<ED extends EntityDict & BaseEntityDict> exten
|
|||
targetEntity: entity as string,
|
||||
bornAt,
|
||||
operatorId,
|
||||
iState: 'normal',
|
||||
operEntity$oper: [{
|
||||
id: 'dummy',
|
||||
action: 'create',
|
||||
|
|
|
|||
Loading…
Reference in New Issue