From 2cf7237167c2c10750f0ad06b9a0737f01a14d23 Mon Sep 17 00:00:00 2001 From: Kirik Date: Wed, 5 Nov 2025 14:28:10 +0100 Subject: [PATCH] =?UTF-8?q?Remove=20'=D0=A1=D0=B2=D0=BE=D0=B9=20=D0=B2?= =?UTF-8?q?=D0=B0=D1=80=D0=B8=D0=B0=D0=BD=D1=82=20=D0=B1=D0=B5=D0=B7=20?= =?UTF-8?q?=D0=91=D0=92=D0=A1'=20option=20from=20trip=20selection=20dropdo?= =?UTF-8?q?wn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This option was displayed in the form dropdown, but users can still suggest custom trips through the 'bvs_number' textarea field. --- static/js/trip-form-loader.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/static/js/trip-form-loader.js b/static/js/trip-form-loader.js index 8c4820e..21bed56 100644 --- a/static/js/trip-form-loader.js +++ b/static/js/trip-form-loader.js @@ -67,12 +67,6 @@ class TripFormLoader { select.appendChild(option); }); - // Добавляем статичную опцию "Свой вариант без БВС" - const customOption = document.createElement('option'); - customOption.value = 'Свой вариант без БВС'; - customOption.textContent = 'Свой вариант без БВС'; - select.appendChild(customOption); - console.log(`✅ Dropdown формы заполнен: ${activeTrips.length} активных поездок`); }