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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## Unreleased

<!-- Unreleased changes can be added here. -->
- Updated email notification text formatting to accommodate special characters
- Updated contact information label to full name from first and last name
- Renames improperly named /api/data/submission/{operation} endpoints back to the intended /api/submission/{operation}.
- Add DAAC onboard/offboard endpoints
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const getDMTemplate = (params, envUrl) => {
<td colspan="2" style="padding:20px;">
<h1>Hello ${params.user.name},</h1><br><br>
<p>You have received a direct message on the Earthdata Pub Dashboard.</p>
<h2>Message:</h2><p>${params.eventMessage.conversation_last_message}</p><br><br>
<h2>Message:</h2><p style="white-space: pre;">${decodeURI(params.eventMessage.conversation_last_message)}</p><br><br>

<p><a style="text-align: left;" href="${envUrl}/dashboard" aria-label="Visit Earthdata Pub Dashboard">${envUrl}/dashboard</a></p>
</td>
Expand Down