From 6566a32f6a9f4245747a14b8a4c3794fa4a869a5 Mon Sep 17 00:00:00 2001 From: laci Date: Mon, 21 Jul 2025 11:21:11 +0000 Subject: [PATCH] subtitle, vpn undefined fix --- common.js | 5 +++-- manage.html | 5 +++-- scan.php | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/common.js b/common.js index b28a758..8eeef64 100644 --- a/common.js +++ b/common.js @@ -10,6 +10,7 @@ function check_deployments() { apps.length = 0; // reset apps.push(...JSON.parse(data)); // push each element console.log(apps); + document.getElementById('installAppsBtn').click(); // manage html_data = ''; @@ -19,6 +20,7 @@ function check_deployments() { service_name = data[k].name; orig_service_name = data[k].orig_name; version = data[k].version; + subtitle = data[k].subtitle; installed = data[k].installed; if (installed=='true') { html_data += '
'+orig_service_name+' - '+version+' - INSTALLED
'; @@ -29,7 +31,6 @@ function check_deployments() { html_data += '
'; } jQuery("#deployments").html(html_data); - document.getElementById('installAppsBtn').click(); } }); @@ -433,8 +434,8 @@ function get_proxy_html() { `; diff --git a/manage.html b/manage.html index 52d8703..2164a92 100644 --- a/manage.html +++ b/manage.html @@ -684,6 +684,7 @@
+ Loading applications...