-
Notifications
You must be signed in to change notification settings - Fork 96
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 Correctly close spans for btn loading icon #1431
FIX Correctly close spans for btn loading icon #1431
Conversation
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.
Looks ok, merge when you're happy with the tests, not sure if the failures are related or not. The change is fine on its own.
6de86e9
to
df8e1c1
Compare
Rebased and rebuilt js - the actual change is unaltered. |
Do we block merge for that? If not, feel free to self merge @GuySartorelli |
We do, yeah. It means that when CI runs |
@kinglozzer An attacker could try to build a bundle that doesn't match the PR and sneak a backdoor in the bundle. |
2573b9e
to
df8e1c1
Compare
I'm 90% sure the failure is a glitch. I forced another build, which will hopefully fix this. |
@GuySartorelli could you try rebuilding the bundle locally? CI checks are still failing 😞 |
I have tried that already (I think? I can't see it in the PR history though..... maybe my memory is playing tricks) but will try again. We've had this problem once before with one of Steve's PRs, and when I created an identical PR to try to debug it my PR didn't have this problem.... so if it doesn't work this time I'll try opening a new PR (in draft initially just to see if it works) - and failing that I guess someone can build it locally and do a diff to validate that they get the same results I push up? |
df8e1c1
to
7aa0d88
Compare
There was a change when I |
This is finally green and already has two approvals. Self-merging. |
The self-closing span tags were being incorrectly interpreted as nested spans, instead of sibling spans. This is most likely a result of the recent update of jQuery.
The correct HTML syntax for these is to not have them self-closing.
Parent issue