Browse Source

Pick a better query selector

flxy 2 năm trước cách đây
mục cha
commit
d81fdafacb
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/react_button/react_button.js

+ 1 - 1
src/components/react_button/react_button.js

@@ -41,7 +41,7 @@ const ReactButton = {
     },
     focusInput () {
       this.$nextTick(() => {
-        const input = document.querySelector('.popover.ReactButton').querySelector('input')
+        const input = document.querySelector('.reaction-picker-filter > input')
         if (input) input.focus()
       })
     },