@@ -29,7 +29,7 @@ export const RowCount = (props: Props) => {
29
29
< span className = { `${ c } -rowcount` } > { formatSmallNumber ( totalPatients ) }
30
30
{ ! isIdentified &&
31
31
< span > de-identified</ span > }
32
- < span > patients </ span >
32
+ < span > participants </ span >
33
33
</ span >
34
34
< span > with </ span >
35
35
< span className = { `${ c } -rowcount` } > { formatSmallNumber ( totalPatients + totalDatapoints ) } rows</ span >
@@ -38,29 +38,29 @@ export const RowCount = (props: Props) => {
38
38
{ /* Total Displayed Patients less than Total in Cohort */ }
39
39
{ totalPatients !== totalCohortPatients &&
40
40
< div className = { `${ c } -info` } >
41
- < div className = { `${ c } -info-inner` } > Why can't I see data for all { formatSmallNumber ( totalCohortPatients ) } patients ?
41
+ < div className = { `${ c } -info-inner` } > Why can't I see data for all { formatSmallNumber ( totalCohortPatients ) } participants ?
42
42
43
43
{ /* Single Node - export limit */ }
44
44
{ ! isFederated && totalCohortPatients > exportLimit &&
45
45
< div className = { `${ c } -info-detail` } >
46
46
< span > Your administrator has limited viewing and exporting to </ span >
47
- < span className = { `${ c } -info-emphasis` } > { formatSmallNumber ( exportLimit ) } patients at a time</ span >
47
+ < span className = { `${ c } -info-emphasis` } > { formatSmallNumber ( exportLimit ) } participants at a time</ span >
48
48
< span > , which is less than the total number in your cohort.</ span >
49
49
</ div >
50
50
}
51
51
52
52
{ /* Single Node - missing patients */ }
53
53
{ ! isFederated && totalPatients < totalCohortPatients && totalCohortPatients < exportLimit &&
54
54
< div className = { `${ c } -info-detail` } >
55
- < span > The Leaf server returned demographic data for less patients than were included in the original cohort. </ span >
56
- < span > This usually indicates that demographic data are missing for these patients .</ span >
55
+ < span > The Leaf server returned demographic data for less participants than were included in the original cohort. </ span >
56
+ < span > This usually indicates that demographic data are missing for these participants .</ span >
57
57
</ div >
58
58
}
59
59
60
60
{ /* Federated */ }
61
61
{ isFederated &&
62
62
< div className = { `${ c } -info-detail` } >
63
- < span > One or more of the Leaf servers you are querying may be limiting the total amount of patients you are able to view.</ span >
63
+ < span > One or more of the Leaf servers you are querying may be limiting the total amount of participants you are able to view.</ span >
64
64
</ div >
65
65
}
66
66
</ div >
@@ -77,8 +77,8 @@ export const RowCount = (props: Props) => {
77
77
This means that all dates have been randomly shifted a certain amount of time, and identifiers such as MRNs and names have been removed.
78
78
</ p >
79
79
< p >
80
- Note: While the amount of time shifted is different between patients , the
81
- < span className = { `${ c } -info-emphasis` } > date-shift value for a given patient is consistent</ span >
80
+ Note: While the amount of time shifted is different between participants , the
81
+ < span className = { `${ c } -info-emphasis` } > date-shift value for a given participant is consistent</ span >
82
82
, so the relative age at an event is preserved.
83
83
</ p >
84
84
</ div >
0 commit comments