diff --git a/components/tooltip/Tooltip.js b/components/tooltip/Tooltip.js index 67e3dc188..8824b8971 100755 --- a/components/tooltip/Tooltip.js +++ b/components/tooltip/Tooltip.js @@ -366,7 +366,7 @@ const Tooltip = { bindEvents(target); } else if (typeof options.value === 'object' && options.value) { - if (ObjectUtils.isEmpty(options.value.value || options.value.value.trim() === '')) { + if (ObjectUtils.isEmpty(options.value.value) || options.value.value.trim() === '') { unbindEvents(target); return; } else {