@@ -107,7 +107,7 @@ export default class FieldRule {
107107 if ( ! this . schemaMap . includes ( actions . target_field ) ) {
108108 this . log ( $t ( auditMsg . FIELD_RULE_TARGET_ABSENT , { target_field : actions . target_field , ctUid : schema . uid } ) , 'error' ) ;
109109 console . log ( this . missingRefs [ this . currentUid ] )
110- this . missingRefs [ this . currentUid ] . push ( { action : actions , ct_uid : this . currentUid , fixStatus :'fixed ' } ) ;
110+ this . missingRefs [ this . currentUid ] . push ( { action : actions , ctUid : this . currentUid , fixStatus :'Fixed ' } ) ;
111111 return
112112 } else {
113113 this . log ( $t ( auditMsg . FIELD_RULE_TARGE_SCAN_MESSAGE , { num : count . toString ( ) , ctUid : schema . uid } ) , 'info' ) ;
@@ -120,7 +120,7 @@ export default class FieldRule {
120120 this . log ( $t ( auditMsg . FIELD_RULE_CONDITION_ABSENT , { condition_field : actions . operand_field } ) , 'error' ) ;
121121 this . missingRefs [ this . currentUid ] . push ( {
122122 action : actions ,
123- ct_uid : this . currentUid ,
123+ ctUid : this . currentUid ,
124124 fixStatus : "Fixed"
125125 } ) ;
126126 return
@@ -143,7 +143,7 @@ export default class FieldRule {
143143 fr . actions . forEach ( ( actions : { target_field : any } ) => {
144144 if ( ! this . schemaMap . includes ( actions . target_field ) ) {
145145 this . log ( $t ( auditMsg . FIELD_RULE_TARGET_ABSENT , { target_field : actions . target_field , ctUid : schema . uid } ) , 'error' ) ;
146- this . missingRefs [ this . currentUid ] . push ( { action : actions , ct_uid : this . currentUid } ) ;
146+ this . missingRefs [ this . currentUid ] . push ( { action : actions , ctUid : this . currentUid } ) ;
147147 } else {
148148 this . log ( $t ( auditMsg . FIELD_RULE_TARGE_SCAN_MESSAGE , { num : count . toString ( ) , ctUid : schema . uid } ) , 'info' ) ;
149149 }
@@ -154,7 +154,7 @@ export default class FieldRule {
154154 this . log ( $t ( auditMsg . FIELD_RULE_CONDITION_ABSENT , { condition_field : actions . operand_field } ) , 'error' ) ;
155155 this . missingRefs [ this . currentUid ] . push ( {
156156 action : actions ,
157- ct_uid : this . currentUid
157+ ctUid : this . currentUid
158158 } ) ;
159159 } else {
160160 this . log ( $t ( auditMsg . FIELD_RULE_CONDITION_SCAN_MESSAGE , { num : count . toString ( ) , ctUid : schema . uid } ) , 'info' ) ;
0 commit comments