Skip to content

Commit

Permalink
Fix 'focus the compose textarea' shortcut is not working (mastodon#29059
Browse files Browse the repository at this point in the history
)
  • Loading branch information
eai04191 authored and Ember-ruby committed Mar 19, 2024
1 parent 8169b8e commit ca27592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/features/ui/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ class UI extends PureComponent {
handleHotkeyNew = e => {
e.preventDefault();

const element = this.node.querySelector('.compose-form__autosuggest-wrapper textarea');
const element = this.node.querySelector('.autosuggest-textarea__textarea');

if (element) {
element.focus();
Expand Down

0 comments on commit ca27592

Please sign in to comment.