Skip to content

Commit

Permalink
bug-12714: fixing a JavaScript problem around Calendar AnuglarJS plug…
Browse files Browse the repository at this point in the history
…ins.
  • Loading branch information
SilverYoCha committed Dec 13, 2021
1 parent 9ac0091 commit 7dcd7a6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@
typeOfItemValue = typeof itemValue;
}
if ((typeOfItemValue === 'string' && itemValue === componentInstanceId) ||
(typeOfItemValue === 'function' && itemValue() === componentInstanceId)) {
(typeOfItemValue === 'function' && itemValue.call(item) === componentInstanceId)) {
filteredItems.push(item);
}
});
Expand Down

0 comments on commit 7dcd7a6

Please sign in to comment.