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:
parent
8b37453e09
commit
731c1416ce
@ -170,7 +170,7 @@ export class FormElementCheckbox extends FormElement {
|
|||||||
this.element.classList.toggle("checked", this.value);
|
this.element.classList.toggle("checked", this.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
focus(parent) {}
|
focus() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class FormElementCheckboxList extends FormElement {
|
export class FormElementCheckboxList extends FormElement {
|
||||||
@ -195,7 +195,7 @@ export class FormElementCheckboxList extends FormElement {
|
|||||||
return this.checkboxes.map(checkbox => checkbox.getValue());
|
return this.checkboxes.map(checkbox => checkbox.getValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
focus(parent) {}
|
focus() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class FormElementItemChooser extends FormElement {
|
export class FormElementItemChooser extends FormElement {
|
||||||
|
Loading…
Reference in New Issue
Block a user