diff --git a/app/javascript/mastodon/features/ui/components/boost_modal.js b/app/javascript/mastodon/features/ui/components/boost_modal.js index 183f05fab..9d99b5336 100644 --- a/app/javascript/mastodon/features/ui/components/boost_modal.js +++ b/app/javascript/mastodon/features/ui/components/boost_modal.js @@ -27,6 +27,10 @@ class BoostModal extends ImmutablePureComponent { intl: PropTypes.object.isRequired, }; + componentDidMount() { + this.button.focus(); + } + handleReblog = () => { this.props.onReblog(this.props.status); this.props.onClose(); @@ -40,6 +44,10 @@ class BoostModal extends ImmutablePureComponent { } } + setRef = (c) => { + this.button = c; + } + render () { const { status, intl, onClose } = this.props; @@ -67,7 +75,7 @@ class BoostModal extends ImmutablePureComponent {
Shift + }} />
-
);