logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: aea9f92d39df4af5e7579e9d0ec443d3fb18a756
parent 5dc6cbd487ff5e1f8a709e1886dd1a850cae9ce8
Author: flxy <flxy@staycomfy.dev>
Date:   Wed, 11 Jan 2023 13:52:49 +0100

Adjust query selector to actually get the popover now

Diffstat:

Msrc/components/react_button/react_button.js2+-
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('.popover.ReactButton').querySelector('input') if (input) input.focus() }) },