-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix issue related to Object.keys and Dropdown issue #26291
Conversation
@@ -331,7 +331,7 @@ const Collapse = (($) => { | |||
const _config = { | |||
...Default, | |||
...$this.data(), | |||
...typeof config === 'object' && config | |||
...typeof config === 'object' && config ? config : {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not
typeof config === 'object' ? config : {}
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep that can be enough thanks 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finally I won't make this change because it'll decrease our code coverage
Fixes: #26266
/CC @XhmikosR