Skip to content
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

Kamalam7/appeals 29214 v1 #20267

Merged
merged 3 commits into from
Dec 20, 2023
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
2 changes: 1 addition & 1 deletion client/COPY.json
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@
"EMPLOYER_IDENTIFICATION_NUMBER": "Employer Identification Number",
"PACKAGE_ACTION_MERGE_DESCRIPTION": "By confirming, you will send a request for the supervisor to take action on the following package:",
"PACKAGE_ACTION_MERGE_TITLE": "Request merge",
"PACKAGE_ACTION_MERGE_TEXTAREA_LABEL": "Select a reason for merging this package",
"PACKAGE_ACTION_MERGE_TEXTAREA_LABEL": "Reason for merge",
"PACKAGE_ACTION_MERGE_RADIO_LABEL": "Select a reason for merging this package.",
"PACKAGE_ACTION_MODAL_DESCRIPTION": "By confirming, you will send a request for the supervisor to take action on the following package:",
"PACKAGE_ACTION_REMOVAL_TITLE": "Request package removal",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ const PackageActionModal = (props) => {
name={modalInfo.label}
aria-label={modalInfo.label}
value={textInputReason}
placeholder={modalInfo.placeholder}
onChange={(value) => setTextInputReason(value)}
/>
)}
Expand Down
5 changes: 3 additions & 2 deletions client/app/queue/correspondence/review_package/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const getPackageActionColumns = (dropdownType) => {
</span>
),
valueFunction: (row) => {
const vaDate = moment(row.correspondence.va_date_of_receipt).format('MM/DD/YYYY');
const vaDate = moment.utc(row.correspondence.va_date_of_receipt).format('MM/DD/YYYY');

return (
<span className="veteran-info-value">
Expand All @@ -105,7 +105,8 @@ export const getModalInformation = (dropdownType) => {
title: PACKAGE_ACTION_MERGE_TITLE,
description: PACKAGE_ACTION_MERGE_DESCRIPTION,
label: PACKAGE_ACTION_MERGE_TEXTAREA_LABEL,
radioLabel: PACKAGE_ACTION_MERGE_RADIO_LABEL
radioLabel: PACKAGE_ACTION_MERGE_RADIO_LABEL,
placeholder: 'This is a reason for merge',
};
case 'removePackage':
return {
Expand Down
Loading