commit: 4e02005dd9237f3b44629ece293aeb42098323be
parent 5dc6cbd487ff5e1f8a709e1886dd1a850cae9ce8
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date: Wed, 11 Jan 2023 17:07:47 +0000
Merge branch 'fix-react-popover-input-focus' into 'develop'
Fix react popover input focus
Closes #1233
See merge request pleroma/pleroma-fe!1753
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/react_button/react_button.js b/src/components/react_button/react_button.js
@@ -41,7 +41,7 @@ const ReactButton = {
},
focusInput () {
this.$nextTick(() => {
- const input = this.$el.querySelector('input')
+ const input = document.querySelector('.reaction-picker-filter > input')
if (input) input.focus()
})
},