minor fix
This commit is contained in:
@ -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() || '',
|
||||
|
Reference in New Issue
Block a user