Merge branch 'development' into new/web_prefix

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2025-03-17 21:55:25 +01:00
20 changed files with 141 additions and 124 deletions

View File

@@ -206,7 +206,7 @@ function initCheckboxRadioStyle() {
chkboxStyle = "primary";
}
var boxsheet = $('<link href="' + getCheckboxURL(chkboxStyle) + '" rel="stylesheet" />');
var boxsheet = $('<link href="' + getCheckboxURL(chkboxStyle) + '" rel="stylesheet">');
// Only add the stylesheet if it's not already present
if ($("link[href='" + boxsheet.attr("href") + "']").length === 0) boxsheet.appendTo("head");
@@ -220,7 +220,7 @@ function initCheckboxRadioStyle() {
iCheckStyle.on("change", function () {
var themename = $(this).val();
localStorage.setItem("theme_icheck", themename);
applyCheckboxRadioStyle(themename);
applyCheckboxRadioStyle();
});
}
}
@@ -586,7 +586,7 @@ function updateVersionInfo() {
}
// Display update information of individual components only if we are not running in a Docker container
if ((!isDocker || (isDocker && v.name === "Docker Tag")) && updateComponentAvailable) {
if ((!isDocker || v.name === "Docker Tag") && updateComponentAvailable) {
$("#versions").append(
"<li><strong>" +
v.name +