refactor(web): Исправление названия функции

This commit is contained in:
Dmitry Ivanov
2025-03-04 22:44:01 +03:00
parent a3b03df8d1
commit b494b80548
+2 -2
View File
@@ -359,7 +359,7 @@
let command = getCommand();
let lang = getLang();
if (!isAllowedRequests()) return;
if (!isRequestAllowed()) return;
hideErrors();
let req = new XMLHttpRequest();
@@ -451,7 +451,7 @@
convertInput.disabled = !isEnable;
}
function isAllowedRequests() {
function isRequestAllowed() {
return !convertButton.disable;
}