From ffc2eb93fcb5d0052b6d26a0a593a34484902622 Mon Sep 17 00:00:00 2001 From: Kavin Venkatachalam <50441969+kavinvenkatachalam@users.noreply.github.com> Date: Wed, 27 Jul 2022 09:56:09 +0530 Subject: [PATCH] Fixed empty tooltip issue (#3670) --- frontend/src/_helpers/appUtils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/_helpers/appUtils.js b/frontend/src/_helpers/appUtils.js index fed6625b22..86da1b02bb 100644 --- a/frontend/src/_helpers/appUtils.js +++ b/frontend/src/_helpers/appUtils.js @@ -824,6 +824,7 @@ export function setTablePageIndex(_ref, tableId, index) { } export function renderTooltip({ props, text }) { + if (text === '') return <>; return ( {text}