()
| 14289 | |
| 14290 | // Populate dropdown options |
| 14291 | for (const [profileId, profile] of Object.entries(profiles)) { |
| 14292 | const option = document.createElement('option'); |
| 14293 | option.value = profileId; |
| 14294 | option.textContent = `${profile.name} (${profile.ram}MB RAM)`; |
| 14295 | select.appendChild(option); |
| 14296 | } |
| 14297 | |
| 14298 | // Add change event listener to show profile details |
| 14299 | select.addEventListener('change', function() { |
| 14300 | const selectedProfileId = this.value; |
nothing calls this directly
no test coverage detected