Add core country and language settings (#14478)

This commit is contained in:
Bram Kragten
2022-11-29 20:54:18 +01:00
committed by GitHub
parent ee6f97b802
commit 92d022747b
14 changed files with 495 additions and 57 deletions

View File

@@ -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;