I'm not fully aware if that's an issue from the latest update (it could be) as we started getting reports of it from the time of the latest extension version (4.130.0)
Seems like the lastpass extension copies over DOM attributes from our custom input web element directly to the `<input` element, causing the `maxlength` attribute to be applied to it even without it being set, causing our users to not be able to enter anything in that field;
It looks like in this bit of your code - web-client-content-script.js - more specifically
```for (var t = e.getRootNode().host.attributes, n = 0; n < t.length; n++) {
var r = t[n];
e.hasAttribute(r.name) || r.name.startsWith("on") || e.setAttribute(r.name, r.value)
}
return e```