|
|
@@ -103,7 +103,7 @@ export class InvestmentProposalApproveComponent implements OnInit {
|
|
|
|
|
|
if (this.userListPrevious.length > 0) {
|
|
|
for (let i = 0; i < this.userListPrevious.length; i++) {
|
|
|
- if (this.userListPrevious[i].checked_email == true) {
|
|
|
+ if (this.userListPrevious[i].default_email == true) {
|
|
|
this.generated_inputs_previous += `<div class='form-check form-check-inline'><input type='checkbox' class='form-check-input' id='previous-${
|
|
|
this.userListPrevious[i].name
|
|
|
}' name='users' value='${
|
|
|
@@ -122,7 +122,7 @@ export class InvestmentProposalApproveComponent implements OnInit {
|
|
|
}
|
|
|
if (this.userListNext.length > 0) {
|
|
|
for (let i = 0; i < this.userListNext.length; i++) {
|
|
|
- if (this.userListNext[i].checked_email == true) {
|
|
|
+ if (this.userListNext[i].default_email == true) {
|
|
|
this.generated_inputs_next += `<div class='form-check form-check-inline'><input type='checkbox' class='form-check-input' id='next-${
|
|
|
this.userListNext[i].name
|
|
|
}' name='users' value='${this.userListNext[i].name}' checked='${
|