diff --git a/scripts/pi-hole/js/settings-advanced.js b/scripts/pi-hole/js/settings-advanced.js index b110c972..44e0a31a 100644 --- a/scripts/pi-hole/js/settings-advanced.js +++ b/scripts/pi-hole/js/settings-advanced.js @@ -104,6 +104,7 @@ function valueDetails(key, value) { case "boolean": { content += + '
' + '
Enabled ' + defaultValueHint + - "" + + "
" + "
"; break; @@ -262,7 +263,7 @@ function valueDetails(key, value) { } } - return content; + return '
' + content + "
"; } function generateRow(topic, key, value) { @@ -292,9 +293,8 @@ function generateRow(topic, key, value) { "

" + "" + '
' + - '
' + valueDetails(key, value) + - "
"; + " "; var topKey = key.split(".")[0]; var elem = $("#advanced-content-" + topKey + "-flex");