Skip to content

Commit

Permalink
Fixed Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
deathcave committed Nov 28, 2024
1 parent a40241d commit 886006d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -729,18 +729,20 @@ class NoticeChoice extends StableSelectorMixin(LitElement) {
this.combinedEmailPhonePrechecked = checked ? true : false;
}
this._onChange(
`NC_${key === 'PHONE' ? 'TELE' : key}_DETAIL`,
`${key}_${punsStatus}`
);
console.log( `${hiddenBox.id}_VALUE`,
`NC_HIDDEN_${hiddenBox.value}`)
this._onChange(
`${hiddenBox.id}_VALUE`,
`NC_HIDDEN_${hiddenBox.value}`
);
if (Object.keys(this.checkboxes).length === 1) {
this._onChange(`NC_HIDDEN_PHO_VALUE`, `NC_HIDDEN_PHONE_NONE`);
this._onChange(`NC_HIDDEN_PHONE_VALUE`, `NC_HIDDEN_PHONE_NONE`);
}
return createHiddenInput(hiddenBox.id, hiddenBox.value);
Expand Down

0 comments on commit 886006d

Please sign in to comment.