mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-10 19:40:25 +00:00
Add core country and language settings (#14478)
This commit is contained in:
@@ -6,7 +6,7 @@ export const createTimezoneListEl = () => {
|
||||
Object.keys(timezones).forEach((key) => {
|
||||
const option = document.createElement("option");
|
||||
option.value = key;
|
||||
option.innerHTML = timezones[key];
|
||||
option.innerText = timezones[key];
|
||||
list.appendChild(option);
|
||||
});
|
||||
return list;
|
||||
|
||||
Reference in New Issue
Block a user