matchmaking: fix: var name

This commit is contained in:
starnakin 2024-03-05 18:03:49 +01:00 committed by AdrienLSH
parent b1afd63eb9
commit a408c5d16b

View File

@ -64,7 +64,7 @@ export default class extends AbstractAuthenticatedView {
});
let update = () => {
button.disabled = (input.value < 2 || input.value > 4);
this.button.disabled = (this.input.value < 2 || this.input.value > 4);
};
["change", "oninput"].forEach((event_name) => {