Skip to content

Commit 8beb278

Browse files
author
Jose Alberto Hernandez
committed
Merge branch 'upstream_master' into advancly
2 parents 71bfcde + e8f6e5e commit 8beb278

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

angular.json

+3
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,8 @@
230230
}
231231
}
232232
}
233+
},
234+
"cli": {
235+
"analytics": false
233236
}
234237
}

src/app/account-transfers/edit-standing-instructions/edit-standing-instructions.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class EditStandingInstructionsComponent implements OnInit {
3939
/** Minimum date allowed. */
4040
minDate = new Date(2000, 0, 1);
4141
/** Maximum date allowed. */
42-
maxDate = new Date(2100,0,1);
42+
maxDate = new Date(2100, 0, 1);
4343

4444
/**
4545
* Retrieves the standing instructions template from `resolve`.

src/app/products/loan-products/loan-product-stepper/loan-product-settings-step/loan-product-settings-step.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ export class LoanProductSettingsStepComponent implements OnInit {
511511
productSettings['overDueDaysForRepaymentEvent'] = null;
512512
}
513513
if (productSettings['delinquencyBucketId'] === '') {
514-
delete productSettings['delinquencyBucketId'];
514+
productSettings['delinquencyBucketId'] = null;
515515
}
516516
return productSettings;
517517
}

0 commit comments

Comments
 (0)