From 679b79a89da64c08a1a1a8291c92d2229ac45748 Mon Sep 17 00:00:00 2001
From: ArtemBaskal <a.baskal@adguard.com>
Date: Fri, 19 Jun 2020 14:44:23 +0300
Subject: [PATCH] minor

---
 client/src/components/Logs/Cells/getResponseCell.js | 4 ++++
 client/src/helpers/formatClientCell.js              | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/client/src/components/Logs/Cells/getResponseCell.js b/client/src/components/Logs/Cells/getResponseCell.js
index cbfbb639..c300a00d 100644
--- a/client/src/components/Logs/Cells/getResponseCell.js
+++ b/client/src/components/Logs/Cells/getResponseCell.js
@@ -67,6 +67,8 @@ 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,
@@ -74,6 +76,8 @@ const getResponseCell = (row, filtering, t, isDetailed) => {
         [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>;
         }