Personally, no, but this should be an easy fix for the devs.
If you have some familiarity with javascript, you can just add this to the console and have a working temporary solution until the devs fix it for good.
let blank = document.querySelector("stringToSelectTheBlank");
blank.addEventListener("click", () => {
let input = document.querySelector("stringToSelectInputField");
input.focus();
});
The only thing that would need to be adjusted would be “stringToSelectTheBlank” and “stringToSelectInputField”.
If you are savvy with the browser console, just inspect element to find the blank and the input field, add a (different) id to each of them, and then use those corresponding id’s. (Just remember that for querySelector, you need to put # before the id).
Now, I’m not sure if those local changes would be reverted after each review, but it’s worth a try. If someone gets this working, let me know because I ran out of my BP membership