mirror of
https://github.com/pi-hole/web.git
synced 2025-12-20 02:38:28 +00:00
@@ -220,7 +220,7 @@ function initCheckboxRadioStyle() {
|
|||||||
iCheckStyle.on("change", function () {
|
iCheckStyle.on("change", function () {
|
||||||
var themename = $(this).val();
|
var themename = $(this).val();
|
||||||
localStorage.setItem("theme_icheck", themename);
|
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
|
// 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(
|
$("#versions").append(
|
||||||
"<li><strong>" +
|
"<li><strong>" +
|
||||||
v.name +
|
v.name +
|
||||||
|
|||||||
@@ -323,7 +323,7 @@ function createDynamicConfigTabs() {
|
|||||||
// Dynamically fill the tabs with config topics
|
// Dynamically fill the tabs with config topics
|
||||||
Object.keys(data.config).forEach(function (topic) {
|
Object.keys(data.config).forEach(function (topic) {
|
||||||
var value = data.config[topic];
|
var value = data.config[topic];
|
||||||
generateRow(topic, topic, value, data);
|
generateRow(topic, topic, value);
|
||||||
});
|
});
|
||||||
$("#advanced-overlay").hide();
|
$("#advanced-overlay").hide();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user