Skip to content

Commit

Permalink
Merge remote-tracking branch 'parent/main' into upstream-20240206
Browse files Browse the repository at this point in the history
  • Loading branch information
kmycode committed Feb 6, 2024
2 parents f30b6f5 + 1666b19 commit 507e964
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
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 @@ -468,7 +468,7 @@ class UI extends PureComponent {
handleHotkeyNew = e => {
e.preventDefault();

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

if (element) {
element.focus();
Expand Down
4 changes: 1 addition & 3 deletions app/views/user_mailer/confirmation_instructions.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
%td.email-inner-card-td.email-prose
%p= t @resource.approved? ? 'devise.mailer.confirmation_instructions.explanation' : 'devise.mailer.confirmation_instructions.explanation_when_pending', host: site_hostname
- if @resource.created_by_application
= render 'application/mailer/button', text: t('settings.account_settings'), url: edit_user_registration_url
= link_to confirmation_url(@resource, confirmation_token: @token, redirect_to_app: 'true') do
%span= t 'devise.mailer.confirmation_instructions.action_with_app', app: @resource.created_by_application.name
= render 'application/mailer/button', text: t('devise.mailer.confirmation_instructions.action_with_app', app: @resource.created_by_application.name), url: confirmation_url(@resource, confirmation_token: @token, redirect_to_app: 'true')
- else
= render 'application/mailer/button', text: t('devise.mailer.confirmation_instructions.action'), url: confirmation_url(@resource, confirmation_token: @token)
%p= t 'devise.mailer.confirmation_instructions.extra_html', terms_path: about_more_url, policy_path: privacy_policy_url

0 comments on commit 507e964

Please sign in to comment.