Run prettier

This commit is contained in:
c-bata
2023-01-05 22:22:15 +09:00
parent b641ae5e19
commit ee26d33df4
+12 -6
View File
@@ -120,16 +120,22 @@ export const TrialList: FC<{
</Box>
<Typography>
Values: [
{trial.values?.map((v) => v.toString()).join(" ") || "None"}
]
{trial.values?.map((v) => v.toString()).join(" ") || "None"}]
</Typography>
<Typography>
Params = [
{trial.params.map((p) => `${p.name}: ${p.value}`).join(", ")}
]
{trial.params.map((p) => `${p.name}: ${p.value}`).join(", ")}]
</Typography>
<Typography>
Started At ={" "}
{trial?.datetime_start ? trial?.datetime_start.toString() : null}
</Typography>
<Typography>
Completed At ={" "}
{trial?.datetime_complete
? trial?.datetime_complete.toString()
: null}
</Typography>
<Typography>Started At = {trial?.datetime_start ? trial?.datetime_start.toString() : null}</Typography>
<Typography>Completed At = {trial?.datetime_complete ? trial?.datetime_complete.toString() : null}</Typography>
<Typography>Duration = {duration} ms</Typography>
</CardContent>
</Card>