Noticed when testing something else. Uncaught Sortable: `el` must be an HTMLElement, not [object Undefined] To recreate: 1. Go to Administration > MARC bibliographic framework 2. Pick any framework and MARC structure 3. Pick any subfield and View subfield Notice the console error.
I just got the same bug trying to create a Cypress test with that page. It breaks everything with Cypress and you can't do anything after accessing the page.
I don't know if it's relevant since it's for Cypress and not Koha, but I added this block in my test Cypress.on('uncaught:exception', (err, runnable) => { return false; // Prevent Cypress from failing the test until bz38817 is fixed }); Just thought I'd put this here in case someone else come here because of that.