imagekit-developer / imagekit-magento

Magento 2 ImageKit Integration
MIT License
1 stars 2 forks source link

fix: Admin Panel unusable due to jQuery Migrate Error #7

Closed ahnv closed 2 years ago

ahnv commented 2 years ago

While accessing Images and Videos section in Magento Admin, jQuery Migrate throws a warning "HTML tags must be properly nested and closed" which makes the Page unusable.

This issue is Linked to Magento 2.4.4 and up as they use atleast jQuery Migrate version 3.3.2

The plugin is using a div with self closing tag coding style which is converted from <div /> to <div></div> by Migrate which causes the following check to fail https://github.com/jquery/jquery-migrate/blob/5ee8f69499af8aaa509c6107644babc822f802c0/src/jquery/manipulation.js#L12.

This is due to div not being a syntactically self closing tag Refer https://github.com/jquery/jquery-migrate/blob/5ee8f69499af8aaa509c6107644babc822f802c0/src/jquery/manipulation.js#L4