Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>
</div>
<div class="general-updates">
<wfprev-textarea [label]="'General Updates (Success, Challenges, Progress)'" [rows]="4" [maxLength]="500"
<wfprev-textarea [label]="'General Updates (Successes, Challenges, Progress)'" [rows]="4" [maxLength]="500"
[control]="generalUpdatesControl" [required]="true">
</wfprev-textarea>
</div>
Expand Down Expand Up @@ -59,7 +59,7 @@
[prefix]="'$'" />
</div>
<div class="forecast-rationale">
<wfprev-textarea [label]="'Revised Forecast Rationale'" [rows]="2" [maxLength]="500"
<wfprev-textarea [label]="'Revised Forecast Rationale'" placeholder="Some rationale about why the amount went up." [rows]="2" [maxLength]="500"
[control]="forecastRationaleControl" [required]="true">
</wfprev-textarea>
</div>
Expand All @@ -69,7 +69,7 @@
<p mat-dialog-title class="risk-breakdown-title">Budget Risk Breakdown</p>
<div class="modal-window-row">
<p class="section-description">Provide a breakdown of the total budget risks. All values must add up to the
{{'{'}}Current/Revised{{'}'}} forecast amount as this information is used to identify how much of the overall
{{'{'}}<b>Current/Revised</b>{{'}'}} <b>forecast</b> amount as this information is used to identify how much of the overall
budget is at risk.</p>
</div>
<div class="modal-window-row risk-container">
Expand All @@ -80,8 +80,8 @@
[prefix]="'$'" [img]="'/assets/high-risk.svg'" />
</div>
<div class="forecast-rationale">
<wfprev-textarea [label]="'Description'" [rows]="2" [maxLength]="500" [control]="highRiskDescriptionControl"
[required]="true">
<wfprev-textarea [label]="'Description'" placeholder="Some description about why this amount is high risk" [rows]="2" [maxLength]="500" [control]="highRiskDescriptionControl"
[required]="true" >
</wfprev-textarea>
</div>
</div>
Expand All @@ -93,7 +93,7 @@
[prefix]="'$'" [img]="'/assets/medium-risk.svg'" />
</div>
<div class="forecast-rationale">
<wfprev-textarea [label]="'Description'" [rows]="2" [maxLength]="500" [control]="mediumRiskDescriptionControl"
<wfprev-textarea [label]="'Description'" placeholder="Some description about why this amount is medium risk" [rows]="2" [maxLength]="500" [control]="mediumRiskDescriptionControl"
[required]="true">
</wfprev-textarea>
</div>
Expand All @@ -106,7 +106,7 @@
[prefix]="'$'" [img]="'/assets/low-risk.svg'" />
</div>
<div class="forecast-rationale">
<wfprev-textarea [label]="'Description'" [rows]="2" [maxLength]="500" [control]="lowRiskDescriptionControl"
<wfprev-textarea [label]="'Description'" placeholder="Some description about why this amount is low risk" [rows]="2" [maxLength]="500" [control]="lowRiskDescriptionControl"
[required]="true">
</wfprev-textarea>
</div>
Expand All @@ -119,7 +119,7 @@
[prefix]="'$'" [img]="'/assets/none-risk.svg'" />
</div>
<div class="forecast-rationale">
<wfprev-textarea [label]="'Description'" [rows]="2" [maxLength]="500" [control]="completeDescriptionControl"
<wfprev-textarea [label]="'Description'" placeholder="Some description about what amount was spent and how" [rows]="2" [maxLength]="500" [control]="completeDescriptionControl"
[required]="true">
</wfprev-textarea>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export class PerformanceUpdateModalWindowComponent {
data: {
indicator: 'confirm-unsave',
title: ModalTitles.CONFIRM_CANCEL_TITLE,
message: ModalMessages.CONFIRM_CANCEL_MESSAGE
message: ModalMessages.CONFIRM_CANCEL_PERFORMANCE_UPDATE_MODAL_WINDOW_MESSAGE
},
width: '600px',
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ export const ModalTitles = {

export const ModalMessages = {
CONFIRM_CANCEL_MESSAGE: 'Are you sure you want to cancel? This information will not be saved.',
CONFIRM_CANCEL_PERFORMANCE_UPDATE_MODAL_WINDOW_MESSAGE: 'Are you sure you want to leave this page? The changes you made will not be saved.',
DUPLICATE_FOUND_MESSAGE: 'This Project already exists: ',
CONFIRM_UNSAVE_MESSAGE: 'Are you sure you want to leave this page? The changes you made will not be saved.',
DELETE_ATTACHMENT_MESSAGE: 'Are you sure you want to delete this file? ',
Expand Down
Loading