-
Notifications
You must be signed in to change notification settings - Fork 900
WEB-134: Fix floating rates creation bugs #3466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,12 +59,6 @@ | |
| <div class="layout-row-wrap gap-70percent m-b-10 layout-lt-md-column"> | ||
| <p class="mat-title flex-25"> | ||
| {{ 'labels.inputs.Floating Rate Periods' | translate }} | ||
| <i | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why it was removed?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The question mark icon was removed as per the Jira ticket WEB-134 requirements. The ticket states: "There is a label 'Floating Rate Periods ?' The question mark makes no sense in labels - remove it." |
||
| class="fas fa-question" | ||
| matTooltip="{{ | ||
| 'tooltips.Floating interest rate and start date for this floating rate scheme' | translate | ||
| }}" | ||
| ></i> | ||
| </p> | ||
|
|
||
| <button mat-mini-fab type="button" color="primary" (click)="addFloatingRatePeriod()"> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
whyt it was removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
fromDate: this.settingsService.businessDatewas removed from the dialog data because the minDate calculation is now handled inside the dialog component itself. The dialog now calculates minDate as businessDate + 1 day (tomorrow) since floating rates must always be in the future. This centralizes the date logic in one place rather than passing it from the parent component.