feat(platform): open unified vehicle service by default

This commit is contained in:
lingniu
2026-07-04 04:56:03 +08:00
parent 2dfe0fbf3a
commit 59bda6a6eb
4 changed files with 12 additions and 12 deletions

View File

@@ -147,7 +147,7 @@ export function Realtime({ onOpenVehicle }: { onOpenVehicle: (vin: string, proto
title: '操作',
width: 110,
render: (_: unknown, row: VehicleRealtimeRow) => (
<Button disabled={!canOpenVehicle(row.vin)} onClick={() => onOpenVehicle(row.vin, row.primaryProtocol)}></Button>
<Button disabled={!canOpenVehicle(row.vin)} onClick={() => onOpenVehicle(row.vin)}></Button>
)
}
]}