Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default function DataTable({
: null}
</Table.Td>
<Table.Td>{file.date}</Table.Td>
<Table.Td>{file.event_type}</Table.Td>
<Table.Td style={{ size: "xs" }}>
<Input.Wrapper>
<Textarea
Expand Down Expand Up @@ -110,6 +111,7 @@ export default function DataTable({
<Table.Tr>
<Table.Th style={{ paddingLeft: "25px" }}>Name</Table.Th>
<Table.Th>Date</Table.Th>
<Table.Th>Event Type</Table.Th>
<Table.Th>Location</Table.Th>
<Table.Th style={{ paddingRight: "25px" }}>Notes</Table.Th>
</Table.Tr>
Expand Down
12 changes: 6 additions & 6 deletions src/data/dataFilters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
*/
export const eventType: string[] = [
"Acceleration", // Event type for acceleration tests.
"Endurance", // Event type for endurance tests.
"Skidpad", // Event type for skidpad tests.
"Autocross", // Event type for autocross tests.
"Endurance", // Event type for endurance tests.
"Skidpad", // Event type for skidpad tests.
"Autocross", // Event type for autocross tests.
];

/**
* Represents the list of possible car models.
*
*/
*/
export const carModel: string[] = [
"HT08", // 2023-2024 Car
"HT09", // 2024-2025 Car
]

"HTX",
];
Loading