summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorRutger Broekhoff2026-09-08 12:30:06 +0200
committerRutger Broekhoff2026-09-08 12:30:06 +0200
commite3e0dc994c6ba244472f58b940d0196616bb84b0 (patch)
tree5145e91ff96490158e312068e39123fee945c896 /web
parent3fcfe8e5b2c76efeea1e838fb6b7e235804ecd8f (diff)
downloadroutemon-e3e0dc994c6ba244472f58b940d0196616bb84b0.tar.gz
routemon-e3e0dc994c6ba244472f58b940d0196616bb84b0.zip
More performance improvements
Diffstat (limited to 'web')
-rw-r--r--web/index.js8
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 @@
1const apiBaseUrl = "https://routemon-api.fautchen.eu"; 1// const apiBaseUrl = "https://routemon-api.fautchen.eu";
2// const apiBaseUrl = "http://localhost:8284"; 2const apiBaseUrl = "http://localhost:8284";
3 3
4const dialog = document.querySelector("dialog"); 4const dialog = document.querySelector("dialog");
5const closeButton = document.querySelector("dialog button"); 5const 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}