From 43200d2de8373977b111e597f84994073530dff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Wed, 22 Nov 2023 12:11:44 +0000 Subject: [PATCH] Fix styling MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- scripts/pi-hole/js/settings-api.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/pi-hole/js/settings-api.js b/scripts/pi-hole/js/settings-api.js index 14864cf6..cf8a0c4b 100644 --- a/scripts/pi-hole/js/settings-api.js +++ b/scripts/pi-hole/js/settings-api.js @@ -90,7 +90,10 @@ $(function () { ownSessionID = data.id; $("td", row).each(function () { $(this).addClass("text-bold"); - $(this).attr("title", "This is the session you are currently using for the web interface"); + $(this).attr( + "title", + "This is the session you are currently using for the web interface" + ); }); }