1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-16 11:41:50 +00:00

Fixed problem with ts-lint

This commit is contained in:
Daan Breur 2021-11-22 22:08:21 +01:00
parent 78c8e805f2
commit 564085466d
No known key found for this signature in database
GPG Key ID: FAD44580052ECA57

View File

@ -89,7 +89,7 @@ export class FormElementDetails extends FormElement {
return formElementValues;
}
focus(parent) {}
focus() {}
}
export class FormElementInput extends FormElement {
@ -236,7 +236,7 @@ export class FormElementCheckbox extends FormElement {
this.element.classList.toggle("checked", this.value);
}
focus(parent) {}
focus() {}
}
export class FormElementItemChooser extends FormElement {