1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

fix call signature mismatch

This commit is contained in:
EmeraldBlock 2021-06-05 14:32:28 -05:00
parent 8b37453e09
commit 731c1416ce

View File

@ -170,7 +170,7 @@ export class FormElementCheckbox extends FormElement {
this.element.classList.toggle("checked", this.value);
}
focus(parent) {}
focus() {}
}
export class FormElementCheckboxList extends FormElement {
@ -195,7 +195,7 @@ export class FormElementCheckboxList extends FormElement {
return this.checkboxes.map(checkbox => checkbox.getValue());
}
focus(parent) {}
focus() {}
}
export class FormElementItemChooser extends FormElement {