Fix focus on first element

This commit is contained in:
Julien Nahum
2022-10-28 11:13:10 +02:00
parent 6abf36702b
commit e95e13d8f9
2 changed files with 2 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ export default {
if (this.isIframe) return
// Auto focus on first input
const visibleElements = []
document.querySelectorAll('input,button').forEach(ele => {
document.querySelectorAll('input,button,textarea,[role="button"]').forEach(ele => {
if (ele.offsetWidth !== 0 || ele.offsetHeight !== 0) {
visibleElements.push(ele)
}