Remove 'Свой вариант без БВС' option from trip selection dropdown

This option was displayed in the form dropdown, but users can still suggest custom trips through the 'bvs_number' textarea field.
This commit is contained in:
Kirik
2025-11-05 14:28:10 +01:00
parent 873c397b61
commit 2cf7237167
-6
View File
@@ -67,12 +67,6 @@ class TripFormLoader {
select.appendChild(option); select.appendChild(option);
}); });
// Добавляем статичную опцию "Свой вариант без БВС"
const customOption = document.createElement('option');
customOption.value = 'Свой вариант без БВС';
customOption.textContent = 'Свой вариант без БВС';
select.appendChild(customOption);
console.log(`✅ Dropdown формы заполнен: ${activeTrips.length} активных поездок`); console.log(`✅ Dropdown формы заполнен: ${activeTrips.length} активных поездок`);
} }