diff --git a/scripts/pi-hole/js/groups-adlists.js b/scripts/pi-hole/js/groups-adlists.js
index f16e1bc5..357881e4 100644
--- a/scripts/pi-hole/js/groups-adlists.js
+++ b/scripts/pi-hole/js/groups-adlists.js
@@ -62,7 +62,7 @@ function initTable() {
"\nDatabase ID: " +
data.id;
$("td:eq(0)", row).html(
- '' + data.address + ""
+ '' + data.address + ""
);
var disabled = data.enabled === 0;
diff --git a/scripts/pi-hole/js/groups-clients.js b/scripts/pi-hole/js/groups-clients.js
index 71e0e585..edfa692a 100644
--- a/scripts/pi-hole/js/groups-clients.js
+++ b/scripts/pi-hole/js/groups-clients.js
@@ -91,13 +91,17 @@ function initTable() {
var ip_name =
'' +
+ '" class="breakall">' +
data.ip +
'';
- if (data.name !== null && data.name.length > 0)
- ip_name += '
' + data.name + "";
+
+ if (data.name !== null && data.name.length > 0) {
+ ip_name +=
+ '
' + data.name + "";
+ }
+
$("td:eq(0)", row).html(ip_name);
$("td:eq(1)", row).empty();