-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[BUGFIX beta] Update VM, fix component name preprocessing #19363
Conversation
}, | ||
}); | ||
}, | ||
let override = VM_ASSERTION_OVERRIDES.find((o) => o.id === id); |
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.
Can't use .find
on IE11 (this is failing browser stack)
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.
I think we should probably change the overrides to be a map / pojo where the key is the id
. What do you think?
if (DEBUG) { | ||
let { id } = options; | ||
|
||
let override = VM_DEPRECATION_OVERRIDES.find((o) => o.id === id); |
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.
Same here RE: .find
6d37785
to
d635e02
Compare
Fixes #19360 |
No description provided.