diff options
Diffstat (limited to 'web/index.js')
| -rw-r--r-- | web/index.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/web/index.js b/web/index.js index d34f5b6..a37d598 100644 --- a/web/index.js +++ b/web/index.js | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | const apiBaseUrl = "https://routemon-api.fautchen.eu"; | 1 | // const apiBaseUrl = "https://routemon-api.fautchen.eu"; |
| 2 | // const apiBaseUrl = "http://localhost:8284"; | 2 | const apiBaseUrl = "http://localhost:8284"; |
| 3 | 3 | ||
| 4 | const dialog = document.querySelector("dialog"); | 4 | const dialog = document.querySelector("dialog"); |
| 5 | const closeButton = document.querySelector("dialog button"); | 5 | const closeButton = document.querySelector("dialog button"); |
| @@ -95,8 +95,8 @@ async function getSysinfo() { | |||
| 95 | txt(new Date(res.using_publication_of).toLocaleString())], | 95 | txt(new Date(res.using_publication_of).toLocaleString())], |
| 96 | [txt("Grootte BLSE-index"), | 96 | [txt("Grootte BLSE-index"), |
| 97 | txt(res.blse_index_size.toString())], | 97 | txt(res.blse_index_size.toString())], |
| 98 | [txt("Grootte puntenindex"), | 98 | [txt("Grootte BPE-index"), |
| 99 | txt(res.p_index_size.toString())], | 99 | txt(res.bpe_index_size.toString())], |
| 100 | ]; | 100 | ]; |
| 101 | document.getElementById("sysinfo-details").replaceChildren(tbl(rows)); | 101 | document.getElementById("sysinfo-details").replaceChildren(tbl(rows)); |
| 102 | } | 102 | } |