diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-06-25 16:49:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-25 16:49:47 -0400 |
commit | cf70b3de6411cfd540f2c3c7f6e1c27afb10ef84 (patch) | |
tree | a672b8194d638cd9b0d909fece3171d27812b92a /ext | |
parent | 4d5e85ff0905bdb4164508b5df30d897de8fbca0 (diff) |
Fix search input focus not working properly (#1752)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/js/display/search-display-controller.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index 8743166b..6bdef2c8 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -435,7 +435,7 @@ class SearchDisplayController { case 'select': return true; } - if (element.contentEditable) { return true; } + if (element.isContentEditable) { return true; } return false; } } |