|
@@ -265,10 +265,10 @@ export default {
|
|
|
data.forEach(item => {
|
|
|
item.data.forEach(field => {
|
|
|
if (field.code === "openOcr") {
|
|
|
- this.openOcr = field.code === "true";
|
|
|
+ this.openOcr = field.value === "true";
|
|
|
}
|
|
|
if (field.code === "openGlobalMatch") {
|
|
|
- this.openGlobalMatch = field.code === "true";
|
|
|
+ this.openGlobalMatch = field.value === "true";
|
|
|
}
|
|
|
});
|
|
|
});
|