diff --git a/__tests__/shared/components/SubmissionManagement/__snapshots__/Submission.jsx.snap b/__tests__/shared/components/SubmissionManagement/__snapshots__/Submission.jsx.snap
index b383854c98..36036258fa 100644
--- a/__tests__/shared/components/SubmissionManagement/__snapshots__/Submission.jsx.snap
+++ b/__tests__/shared/components/SubmissionManagement/__snapshots__/Submission.jsx.snap
@@ -6,7 +6,11 @@ exports[`Snapshot match 1`] = `
>
|
+ >
+
+
|
12345
+
|
|
|
{submissionObject.id}
+ {submissionObject.legacyId}
|
{submissionObject.type}
@@ -118,6 +119,7 @@ Submission.defaultProps = {
Submission.propTypes = {
submissionObject: PT.shape({
id: PT.string,
+ legacyId: PT.string,
warpreviewnings: PT.string,
screening: PT.shape({
status: PT.string,
diff --git a/src/shared/components/SubmissionManagement/Submission/styles.scss b/src/shared/components/SubmissionManagement/Submission/styles.scss
index 981c203383..07ffd7f033 100644
--- a/src/shared/components/SubmissionManagement/Submission/styles.scss
+++ b/src/shared/components/SubmissionManagement/Submission/styles.scss
@@ -77,6 +77,10 @@ $submission-space-50: $base-unit * 10;
}
}
+ .legacy-id {
+ color: $tc-gray-50;
+ }
+
.status-col {
text-align: center;
|