Skip to content

Commit

Permalink
client: increase font size when adding material to queues
Browse files Browse the repository at this point in the history
  • Loading branch information
wuzzeb committed Dec 4, 2024
1 parent 5a268d4 commit 09f98a9
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,11 @@ function SelectRawMaterial({
<ListItemIcon>
<PartIdenticon part={casting.casting} />
</ListItemIcon>
<ListItemText primary={casting.casting} secondary={casting.message ?? undefined} />
<ListItemText
primary={casting.casting}
primaryTypographyProps={{ variant: "h4" }}
secondary={casting.message ?? undefined}
/>
</ListItemButton>
</ListItem>
))}
Expand Down Expand Up @@ -204,6 +208,7 @@ function SelectJob({
</ListItemIcon>
<ListItemText
primary={j.job.partName + " (" + j.job.unique + ")"}
primaryTypographyProps={{ variant: "h4" }}
secondary={
<Typography variant="body2">
{j.machinedProcs[0].lastProc === 0
Expand Down Expand Up @@ -244,6 +249,7 @@ function SelectJob({
</ListItemIcon>
<ListItemText
primary={j.job.partName + " (" + j.job.unique + ")"}
primaryTypographyProps={{ variant: "h4" }}
secondary={j.job.routeStartUTC.toLocaleDateString()}
/>
</ListItemButton>
Expand Down Expand Up @@ -899,6 +905,7 @@ export const BulkAddCastingWithoutSerialDialog = memo(function BulkAddCastingWit
</ListItemIcon>
<ListItemText
primary={casting}
primaryTypographyProps={{ variant: "h4" }}
secondary={
jobCnt === 0
? "Not used by any current jobs"
Expand Down

0 comments on commit 09f98a9

Please sign in to comment.