mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
fix trim undefined in tooltip.js
This commit is contained in:
parent
a40bf84db2
commit
53d3950b18
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue