Skip to content

Commit

Permalink
hide adjustement at enter as default
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Gillmann committed May 26, 2020
1 parent 61b3266 commit 165f51c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openimis/fe-claim",
"version": "1.2.0-rc2",
"version": "1.2.0-rc3",
"license": "AGPL-3.0-only",
"description": "openIMIS Frontend Claim reference module",
"repository": "openimis/openimis-fe-claim_js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ClaimMasterPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ClaimMasterPanel extends FormPanel {
super(props);
this.codeMaxLength = props.modulesManager.getConf("fe-claim", "claimForm.codeMaxLength", 8);
this.guaranteeIdMaxLength = props.modulesManager.getConf("fe-claim", "claimForm.guaranteeIdMaxLength", 50);
this.showAdjustmentAtEnter = props.modulesManager.getConf("fe-claim", "claimForm.showAdjustmentAtEnter", true);
this.showAdjustmentAtEnter = props.modulesManager.getConf("fe-claim", "claimForm.showAdjustmentAtEnter", false);
this.insureePicker = props.modulesManager.getConf("fe-claim", "claimForm.insureePicker", "insuree.InsureeChfIdPicker");
}

Expand Down

0 comments on commit 165f51c

Please sign in to comment.