Skip to content

Commit 5006d0e

Browse files
committed
rename sections on android job detail
1 parent 4950693 commit 5006d0e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/views/sis/student-work/detail.android.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ function Title({job}: {job: JobType}) {
5959
) : null
6060
}
6161

62-
function Contact({job}: {job: JobType}) {
62+
function ContactInformation({job}: {job: JobType}) {
6363
const contactName = job.contactName
6464
const contactEmail = job.contactEmail
6565
const contactNumber = job.contactPhone
6666
const contactOffice = job.office
6767

6868
return contactName || contactEmail || contactNumber || contactOffice ? (
69-
<Card header="Contact" style={styles.card}>
69+
<Card header="Contact Information" style={styles.card}>
7070
<Text style={styles.cardBody}>{contactName}</Text>
7171

7272
{contactEmail ? (
@@ -111,9 +111,9 @@ function Hours({job}: {job: JobType}) {
111111
) : null
112112
}
113113

114-
function GeneralInfo({job}: {job: JobType}) {
114+
function JobInformation({job}: {job: JobType}) {
115115
return job.year || job.openPositions ? (
116-
<Card header="General" style={styles.card}>
116+
<Card header="Job Information" style={styles.card}>
117117
<Text style={styles.cardBody}>
118118
{job.year ? `${job.year}\n\n` : null}
119119
{job.openPositions ? `Positions: ${job.openPositions}\n\n` : null}
@@ -207,8 +207,8 @@ export class JobDetailView extends React.PureComponent<Props> {
207207
return (
208208
<ScrollView>
209209
<Title job={job} />
210-
<Contact job={job} />
211-
<GeneralInfo job={job} />
210+
<ContactInformation job={job} />
211+
<JobInformation job={job} />
212212
<Hours job={job} />
213213
<Description job={job} />
214214
<Skills job={job} />

0 commit comments

Comments
 (0)