Skip to content

Commit b75d54b

Browse files
committed
More style options
1 parent 23e022f commit b75d54b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

backend/frontend/src/components/TestHistory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function TestHistory({ record, onUpdateReference }: Props) {
4141
<Table.Tr key={d.timeStamp}>
4242
<Table.Td>
4343
<Text size={'sm'} c={'dimmed'}>
44-
{new Date(d.timeStamp).toISOString().replace('T', ' ').replace('Z', ' ')}
44+
{new Date(d.timeStamp).toISOString().split('T')[0]}<br />{new Date(d.timeStamp).toISOString().split('T')[1]?.replace('Z', '')}
4545
</Text>
4646
</Table.Td>
4747
<Table.Td>

backend/frontend/src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default function Home() {
145145
</Group>
146146

147147
{/* Test records table */}
148-
<Table striped highlightOnHover withColumnBorders stickyHeader>
148+
<Table striped highlightOnHover withColumnBorders stickyHeader fz={'md'}>
149149
<Table.Thead>
150150
<Table.Tr>
151151
<SortableHeader sortKey={'pixelError'} label={'Error'} onSort={handleSort} activeColumn={sortCol} direction={sortDir} />

0 commit comments

Comments
 (0)