diff --git a/src/pages/admin/Vehicle.tsx b/src/pages/admin/Vehicle.tsx index 21074d7..f7c7ab4 100644 --- a/src/pages/admin/Vehicle.tsx +++ b/src/pages/admin/Vehicle.tsx @@ -87,8 +87,8 @@ const Vehicle = () => { mileage: '', price: '', base_price: '', - country_of_origin: '', - drive_type: '', + country_of_origin: 'Россия', + drive_type: 'AWD', engine_type: 'бензиновый', engine_capacity: '', engine_power: '', @@ -151,8 +151,8 @@ const Vehicle = () => { mileage: '', price: '', base_price: '', - country_of_origin: '', - drive_type: '', + country_of_origin: 'Россия', + drive_type: 'AWD', engine_type: 'бензиновый', engine_capacity: '', engine_power: '', @@ -174,8 +174,8 @@ const Vehicle = () => { mileage: car.mileage.toString(), price: car.price.toString(), base_price: car.base_price?.toString() || '', - country_of_origin: car.country_of_origin || '', - drive_type: car.drive_type || '', + country_of_origin: car.country_of_origin || 'Россия', + drive_type: car.drive_type || 'AWD', engine_type: car.engine_type || 'бензиновый', engine_capacity: car.engine_capacity?.toString() || '', engine_power: car.engine_power?.toString() || '',