diff options
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/main.js b/frontend/main.js index a3b6c68..2b9de5f 100644 --- a/frontend/main.js +++ b/frontend/main.js @@ -77,7 +77,7 @@ async function information(urlParam = null) { body: JSON.stringify({ "machine_id": urlParam ? urlParam : "" }), }); - const block = await response.json()["block"]; + const block = await response.json().block; document.getElementById("logo-id").innerText = block; |
