This commit is contained in:
Your Name
2025-03-27 16:40:24 +01:00
parent 8fd76001f2
commit 7a958d5c8e

View File

@@ -372,6 +372,10 @@ document.addEventListener('DOMContentLoaded', function () {
success: function(response) { success: function(response) {
console.log("Getting SQLite config table:"); console.log("Getting SQLite config table:");
console.log(response); console.log(response);
//modem_version
const modem_version_html = document.getElementById("modem_version");
modem_version_html.innerText = response.modem_version;
// Set checkbox state based on the response data // Set checkbox state based on the response data
const check_modem_configMode = document.getElementById("check_modem_configMode"); const check_modem_configMode = document.getElementById("check_modem_configMode");
if (check_modem_configMode) { if (check_modem_configMode) {