diff --git a/client/src/components/Logs/Cells/getResponseCell.js b/client/src/components/Logs/Cells/getResponseCell.js
index cbfbb639..f0b390c3 100644
--- a/client/src/components/Logs/Cells/getResponseCell.js
+++ b/client/src/components/Logs/Cells/getResponseCell.js
@@ -67,6 +67,17 @@ const getResponseCell = (row, filtering, t, isDetailed) => {
         [FILTERED_STATUS.FILTERED_BLOCKED_SERVICE]: {
             domain,
             encryption_status: boldStatusLabel,
+            install_settings_dns: upstream,
+            elapsed: formattedElapsedMs,
+            filter,
+            rule_label: rule,
+            response_code: status,
+        },
+        [FILTERED_STATUS.NOT_FILTERED_WHITE_LIST]: {
+            domain,
+            encryption_status: boldStatusLabel,
+            install_settings_dns: upstream,
+            elapsed: formattedElapsedMs,
             filter,
             rule_label: rule,
             response_code: status,
diff --git a/client/src/helpers/formatClientCell.js b/client/src/helpers/formatClientCell.js
index 22dbd26d..37776af1 100644
--- a/client/src/helpers/formatClientCell.js
+++ b/client/src/helpers/formatClientCell.js
@@ -36,7 +36,9 @@ export const formatClientCell = (row, t, isDetailed = false) => {
             nameContainer = isDetailed
                 ? <small title={value}>{value}</small>
                 : <div className="logs__text logs__text--nowrap" title={`${name} (${value})`}>
-                    {name}<small>{`(${value})`}</small>
+                    {name}
+                    {' '}
+                    <small>{`(${value})`}</small>
                 </div>;
         }