mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Fixed locations dropdown in Assets view
This commit is contained in:
@@ -126,7 +126,7 @@ async function loadLocationsIntoSelect(selectElement, selectedValue = null) {
|
||||
selectElement.innerHTML = `<option value="">${appTranslations.selectLocation}</option>`;
|
||||
|
||||
locations.forEach(loc => {
|
||||
const text = `${loc.description.Location}, Room ${loc.description.RoomNumber}, Seat ${loc.description.Seat}`;
|
||||
const text = `${loc.location}`;
|
||||
const option = document.createElement('option');
|
||||
option.value = loc.location;
|
||||
option.textContent = text;
|
||||
|
||||
Reference in New Issue
Block a user