Skip to content

Commit

Permalink
Fixed empty tooltip issue (ToolJet#3670)
Browse files Browse the repository at this point in the history
  • Loading branch information
kavinvenkatachalam authored Jul 27, 2022
1 parent f482cc5 commit ffc2eb9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions frontend/src/_helpers/appUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -824,6 +824,7 @@ export function setTablePageIndex(_ref, tableId, index) {
}

export function renderTooltip({ props, text }) {
if (text === '') return <></>;
return (
<Tooltip id="button-tooltip" {...props}>
{text}
Expand Down

0 comments on commit ffc2eb9

Please sign in to comment.