From b43aa86caec77ae1f917d0543420cf622a732f1a Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Fri, 11 Feb 2022 18:56:08 +0300 Subject: [PATCH] Pull request: client: use strict search by client Updates #4271. Squashed commit of the following: commit 10a113126306fce51b4dd10a696b8c7d3213a445 Author: Ainar Garipov Date: Fri Feb 11 18:37:18 2022 +0300 client: more strict search commit 7aa24129195c0eba442bfe43564469fdb2a5b138 Author: Ainar Garipov Date: Fri Feb 11 18:22:18 2022 +0300 client: use strict search by client --- client/src/components/Logs/Cells/ClientCell.js | 2 +- client/src/helpers/renderFormattedClientCell.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Logs/Cells/ClientCell.js b/client/src/components/Logs/Cells/ClientCell.js index cfcf19ec..79d4cd4f 100644 --- a/client/src/components/Logs/Cells/ClientCell.js +++ b/client/src/components/Logs/Cells/ClientCell.js @@ -199,7 +199,7 @@ const ClientCell = ({ {isDetailed && clientName && !whoisAvailable && ( {clientName} diff --git a/client/src/helpers/renderFormattedClientCell.js b/client/src/helpers/renderFormattedClientCell.js index 6cbb735f..3e610430 100644 --- a/client/src/helpers/renderFormattedClientCell.js +++ b/client/src/helpers/renderFormattedClientCell.js @@ -64,7 +64,7 @@ export const renderFormattedClientCell = (value, info, isDetailed = false, isLog } return
- {nameContainer} + {nameContainer} {whoisContainer}
; };