This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user