Fix search input focus not working properly (#1752)

This commit is contained in:
toasted-nutbread 2021-06-25 16:49:47 -04:00 committed by GitHub
parent 4d5e85ff09
commit cf70b3de64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -435,7 +435,7 @@ class SearchDisplayController {
case 'select':
return true;
}
if (element.contentEditable) { return true; }
if (element.isContentEditable) { return true; }
return false;
}
}