mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fix bug when tooltip contains number (#4953)
This commit is contained in:
parent
6d26ff7ec8
commit
742d2b9887
1 changed files with 1 additions and 1 deletions
|
|
@ -253,7 +253,7 @@ export const Box = function Box({
|
|||
<OverlayTrigger
|
||||
placement={inCanvas ? 'auto' : 'top'}
|
||||
delay={{ show: 500, hide: 0 }}
|
||||
trigger={inCanvas && !validatedGeneralProperties.tooltip?.trim() ? null : ['hover', 'focus']}
|
||||
trigger={inCanvas && !validatedGeneralProperties.tooltip?.toString().trim() ? null : ['hover', 'focus']}
|
||||
overlay={(props) =>
|
||||
renderTooltip({
|
||||
props,
|
||||
|
|
|
|||
Loading…
Reference in a new issue