Add VIN to vehicle info.

This commit is contained in:
Patrick Fic
2022-08-30 12:40:37 -07:00
parent e25172f0bf
commit 1530a9ea60
3 changed files with 16 additions and 23 deletions

View File

@@ -58,9 +58,14 @@ export default function JobTombstone({ job, loading, refetch }) {
/>
<DataLabelComponent
label={t("objects.jobs.fields.vehicle")}
content={`${job.v_model_yr || ""} ${job.v_make_desc || ""} ${
job.v_model_desc || ""
}`}
content={
<View>
<Text>{`${job.v_model_yr || ""} ${job.v_make_desc || ""} ${
job.v_model_desc || ""
}`}</Text>
<Text>{job.v_vin}</Text>
</View>
}
/>
</View>
<View style={localStyles.twoColumnCardColumn}>