From e3e0dc994c6ba244472f58b940d0196616bb84b0 Mon Sep 17 00:00:00 2001 From: Rutger Broekhoff Date: Tue, 8 Sep 2026 12:30:06 +0200 Subject: More performance improvements --- web/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'web') 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 @@ -const apiBaseUrl = "https://routemon-api.fautchen.eu"; -// const apiBaseUrl = "http://localhost:8284"; +// const apiBaseUrl = "https://routemon-api.fautchen.eu"; +const apiBaseUrl = "http://localhost:8284"; const dialog = document.querySelector("dialog"); const closeButton = document.querySelector("dialog button"); @@ -95,8 +95,8 @@ async function getSysinfo() { txt(new Date(res.using_publication_of).toLocaleString())], [txt("Grootte BLSE-index"), txt(res.blse_index_size.toString())], - [txt("Grootte puntenindex"), - txt(res.p_index_size.toString())], + [txt("Grootte BPE-index"), + txt(res.bpe_index_size.toString())], ]; document.getElementById("sysinfo-details").replaceChildren(tbl(rows)); } -- cgit v1.3