Browse Source

Fix sign up button not saying sign up when invite is used (#10623)

Fix #10616
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
041fb0e840
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/auth/registrations/new.html.haml

+ 1
- 1
app/views/auth/registrations/new.html.haml View File

@ -36,6 +36,6 @@
= f.input :agreement, as: :boolean, wrapper: :with_label, label: t('auth.checkbox_agreement_html', rules_path: about_more_path, terms_path: terms_path)
.actions
= f.button :button, sign_up_message, type: :submit
= f.button :button, @invite.present? ? t('auth.register') : sign_up_message, type: :submit
.form-footer= render 'auth/shared/links'

Loading…
Cancel
Save