Skip to content

Commit

Permalink
OP-1725: remove null/empty option from dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
olewandowski1 committed Jan 8, 2024
1 parent b26a5bc commit 13fdd51
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/components/ContractHeadPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ class ContractHeadPanel extends FormPanel {
<PublishedComponent
pubRef="policyHolder.PolicyHolderPicker"
module="contract"
withNull
nullLabel={formatMessage(intl, "contract", "emptyLabel")}
withNull={false}
value={!!edited && !!edited.policyHolder && edited.policyHolder}
onChange={(v) => this.updateAttribute("policyHolder", v)}
readOnly={
Expand Down
4 changes: 2 additions & 2 deletions src/dialogs/CreateContractDetailsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class CreateContractDetailsDialog extends Component {
<PublishedComponent
pubRef="policyHolder.PolicyHolderInsureePicker"
required
withNull
withNull={false}
policyHolderId={contract?.policyHolder?.id}
value={!!contractDetails.insuree && contractDetails.insuree}
onChange={v => this.updateAttribute('insuree', v)}
Expand All @@ -148,7 +148,7 @@ class CreateContractDetailsDialog extends Component {
<Grid item className={classes.item}>
<PublishedComponent
pubRef="policyHolder.PolicyHolderContributionPlanBundlePicker"
withNull
withNull={false}
nullLabel={formatMessage(intl, "contract", "emptyLabel")}
policyHolderId={contract?.policyHolder?.id}
value={!!contractDetails.contributionPlanBundle && contractDetails.contributionPlanBundle}
Expand Down
4 changes: 2 additions & 2 deletions src/dialogs/UpdateContractDetailsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class CreateContractDetailsDialog extends Component {
<PublishedComponent
pubRef="policyHolder.PolicyHolderInsureePicker"
required
withNull
withNull={false}
policyHolderId={contract?.policyHolder?.id}
value={!!contractDetails.insuree && contractDetails.insuree}
readOnly
Expand All @@ -158,7 +158,7 @@ class CreateContractDetailsDialog extends Component {
<Grid item className={classes.item}>
<PublishedComponent
pubRef="policyHolder.PolicyHolderContributionPlanBundlePicker"
withNull
withNull={false}
nullLabel={formatMessage(intl, "contract", "emptyLabel")}
policyHolderId={contract?.policyHolder?.id}
value={!!contractDetails.contributionPlanBundle && contractDetails.contributionPlanBundle}
Expand Down

0 comments on commit 13fdd51

Please sign in to comment.