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 () {
|
||||
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 +
|
||||
|
||||
@@ -323,7 +323,7 @@ function createDynamicConfigTabs() {
|
||||
// Dynamically fill the tabs with config topics
|
||||
Object.keys(data.config).forEach(function (topic) {
|
||||
var value = data.config[topic];
|
||||
generateRow(topic, topic, value, data);
|
||||
generateRow(topic, topic, value);
|
||||
});
|
||||
$("#advanced-overlay").hide();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user