diff --git a/static/js/trip-form-loader.js b/static/js/trip-form-loader.js index 21bed56..f3ace04 100644 --- a/static/js/trip-form-loader.js +++ b/static/js/trip-form-loader.js @@ -67,6 +67,12 @@ class TripFormLoader { select.appendChild(option); }); + // Добавляем опцию "Предложить свое" + const customOption = document.createElement('option'); + customOption.value = 'Предложить свое'; + customOption.textContent = 'Предложить свое'; + select.appendChild(customOption); + console.log(`✅ Dropdown формы заполнен: ${activeTrips.length} активных поездок`); }