Заменил селекты на BaseSelect

This commit is contained in:
DwCay
2022-11-03 10:35:37 +03:00
parent 5ae67320d5
commit 0786baee42
8 changed files with 61 additions and 52 deletions

View File

@@ -62,7 +62,7 @@ function del(url, headers, attempts = 3) {
return handleRequest("DELETE", url, headers, attempts, null);
}
function post(url, headers, body, attempts = 3) {
function post(url, body, headers, attempts = 3) {
return handleRequest("POST", url, headers, attempts, null, body);
}