-
I ran into an odd issue after updating our app to 5.x from 4.0.4 today and wanted to report it just in case it's legit/good to know, etc. as I did not see anything about this change in the docs (sincerest apologies if I totally overlooked the change being noted in the docs). Previously, we had the following code for drop-downs, which always worked well:
After upgrading to 5.x, our drop-downs would open but immediately close. Inspecting the HTML markup I noticed that the newly added call in the
Basically, the code injection appears to not respect the following comment, noted above the The result is that the When I remove the Note: I also tried manually adding our |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Correct, you have You basically don't need to add any data-action in v5 because it can take care of it for you. |
Beta Was this translation helpful? Give feedback.
-
Sounds good. Thanks, as always, Chris! Appreciate all the work!! |
Beta Was this translation helpful? Give feedback.
Correct, you have
click -> show
but the initialize addsclick->dropdown
so it would not be able to deduplicate those.You basically don't need to add any data-action in v5 because it can take care of it for you.