File tree 3 files changed +15
-2
lines changed
__tests__/shared/components/SubmissionManagement/__snapshots__
src/shared/components/SubmissionManagement/Submission
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,11 @@ exports[`Snapshot match 1`] = `
6
6
>
7
7
<td
8
8
className = " src-shared-components-SubmissionManagement-Submission-___styles__id-col___zC6Hi"
9
- />
9
+ >
10
+ <div
11
+ className = " src-shared-components-SubmissionManagement-Submission-___styles__legacy-id___3T2Ay"
12
+ />
13
+ </td >
10
14
<td />
11
15
<td
12
16
className = " src-shared-components-SubmissionManagement-Submission-___styles__date-col___3XOxK"
@@ -63,6 +67,9 @@ exports[`Snapshot match 2`] = `
63
67
className = " src-shared-components-SubmissionManagement-Submission-___styles__id-col___zC6Hi"
64
68
>
65
69
12345
70
+ <div
71
+ className = " src-shared-components-SubmissionManagement-Submission-___styles__legacy-id___3T2Ay"
72
+ />
66
73
</td >
67
74
<td />
68
75
<td
@@ -110,4 +117,4 @@ exports[`Snapshot match 2`] = `
110
117
</div >
111
118
</td >
112
119
</tr >
113
- ` ;
120
+ ` ;
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ export default function Submission(props) {
42
42
< tr styleName = "submission-row" >
43
43
< td styleName = "id-col" >
44
44
{ submissionObject . id }
45
+ < div styleName = "legacy-id" > { submissionObject . legacyId } </ div >
45
46
</ td >
46
47
< td >
47
48
{ submissionObject . type }
@@ -118,6 +119,7 @@ Submission.defaultProps = {
118
119
Submission . propTypes = {
119
120
submissionObject : PT . shape ( {
120
121
id : PT . string ,
122
+ legacyId : PT . string ,
121
123
warpreviewnings : PT . string ,
122
124
screening : PT . shape ( {
123
125
status : PT . string ,
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ $submission-space-50: $base-unit * 10;
77
77
}
78
78
}
79
79
80
+ .legacy-id {
81
+ color : $tc-gray-50 ;
82
+ }
83
+
80
84
.status-col {
81
85
text-align : center ;
82
86
You can’t perform that action at this time.
0 commit comments