Fix non-appearing new icon, remove debug outputs

This commit is contained in:
Pieter Vander Vennet 2021-12-14 17:29:21 +01:00
parent 7dfbe5f4b4
commit 90fc0e0840
7 changed files with 15 additions and 13 deletions

View file

@ -56,7 +56,6 @@ export class DropDown<T> extends InputElement<T> {
for (let i = 0; i < values.length; i++) {
const option = document.createElement("option")
option.value = "" + i
console.log(values[i].shown)
option.appendChild(Translations.W(values[i].shown).ConstructElement())
select.appendChild(option)
}