исправление дубля get_venue
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-10-12 18:07:30 +03:00
parent 8777426756
commit c13d4a9520
2 changed files with 2 additions and 23 deletions
+2 -2
View File
@@ -260,8 +260,8 @@
// Добавляем площадки
venues.forEach(venue => {
const option = document.createElement('option');
option.value = venue.unit_name;
option.textContent = venue.unit_name;
option.value = venue.name;
option.textContent = venue.name;
select.appendChild(option);
});
} catch (error) {