feat: update tail_number to string

This commit is contained in:
2026-01-07 18:16:59 +03:00
parent a3d574a79c
commit 25155a66bc
4 changed files with 10 additions and 10 deletions

View File

@@ -48,7 +48,7 @@ const formatDate = (dateString: string | null) => {
type TableRowData = {
vehicle_id: number;
tail_number: number;
tail_number: string;
online: boolean;
lastUpdate: string | null;
gps: boolean;
@@ -58,7 +58,7 @@ type TableRowData = {
};
function createData(
vehicle_id: number,
tail_number: number,
tail_number: string,
online: boolean,
lastUpdate: string | null,
gps: boolean,