diff --git a/triton-client/src/components/ProjectDetail/index.tsx b/triton-client/src/components/ProjectDetail/index.tsx index 2253203..8a5b641 100644 --- a/triton-client/src/components/ProjectDetail/index.tsx +++ b/triton-client/src/components/ProjectDetail/index.tsx @@ -45,12 +45,12 @@ function ProjectDetail() { { target: ".data-sets-container", content: - "The datasets that have been released in Freezeman, relating to the project, will be displayed here.", + "The datasets that have been released, relating to the project, will be displayed here.", }, ] useEffect(() => { - ;(async () => { + ; (async () => { const runs = await dispatch(fetchRuns(projectExternalId)) const datasets: TritonDataset[] = [] for (const run of runs) { diff --git a/triton-server/src/notification.ts b/triton-server/src/notification.ts index 128f0c6..fce5371 100644 --- a/triton-server/src/notification.ts +++ b/triton-server/src/notification.ts @@ -134,7 +134,7 @@ export const sendLatestReleasedNotificationEmail = async () => { let lastDate: string | undefined = undefined for (const dataset of releasedDatasets) { if (dataset.released_status_count > 0) { - const subject = `Dataset #${dataset.id} for project '${dataset.external_project_id}' is ready for staging for download.` + const subject = `The dataset for project '${dataset.external_project_id}' (Dataset #${dataset.id}) is now ready for staging and then download.` const results = await email.broadcastEmailsOfProject( dataset.external_project_id, async (send) => { @@ -148,7 +148,7 @@ export const sendLatestReleasedNotificationEmail = async () => { - Dataset release time: ${new Date(dataset.latest_release_update).toUTCString()} (UTC)

Datasets can be downloaded from the MGC Data Portal. To access the Data Portal, please login to your Hercules account and click on the Data Portal button on the top menu.
- Datasets can be downloaded using SFTP or Globus using the credential provided to you during the staging process.

+ You can download the dataset via SFTP or Globus using the credentials provided during the staging process.

If you forgot or didn't receive your credential, you can reset your password in the Data Portal.
If you have any issues, please contact us at ${config.mail.techSupport}.

Thank you.
`,