Quick fix for the failing Languages E2E test. There were two issues:
The call to .focus() wasn't working in the case where the Languages page wasn't attached to the DOM yet, so I commented it out for now. (see #433)
That same call wasn't working in the case where no language was selected, because the Language Editor renders without any inputs in it. I added a conditional to check for this.
Quick fix for the failing Languages E2E test. There were two issues:
.focus()
wasn't working in the case where the Languages page wasn't attached to the DOM yet, so I commented it out for now. (see #433)