diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-26 01:55:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 01:55:24 +0200 |
commit | 161aeadbb4fcd08bc6a38acae9626f4124c78951 (patch) | |
tree | d0fd1ce7710c4eccf203b8ccb927dda748a523b0 /app/views/settings | |
parent | 768b0f132d8680563cce34e9abd8f3f3ba8a9bb9 (diff) |
Remove character counter from edit profile (#9100)
* Remove display name and bio counter hint, simply limit input * Remove now redundant translations * Fix code style issue
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/profiles/show.html.haml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/settings/profiles/show.html.haml b/app/views/settings/profiles/show.html.haml index 42e3840a1..f5c50144b 100644 --- a/app/views/settings/profiles/show.html.haml +++ b/app/views/settings/profiles/show.html.haml @@ -6,8 +6,8 @@ .fields-row .fields-row__column.fields-group.fields-row__column-6 - = f.input :display_name, wrapper: :with_label, hint: t('simple_form.hints.defaults.display_name', count: 30 - @account.display_name.size).html_safe - = f.input :note, wrapper: :with_label, hint: t('simple_form.hints.defaults.note', count: 160 - @account.note.size).html_safe + = f.input :display_name, wrapper: :with_label, input_html: { maxlength: 30 }, hint: false + = f.input :note, wrapper: :with_label, input_html: { maxlength: 160 }, hint: false .fields-row .fields-row__column.fields-row__column-6 @@ -36,8 +36,8 @@ = f.simple_fields_for :fields do |fields_f| .row - = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name') - = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value') + = fields_f.input :name, placeholder: t('simple_form.labels.account.fields.name'), input_html: { maxlength: 255 } + = fields_f.input :value, placeholder: t('simple_form.labels.account.fields.value'), input_html: { maxlength: 255 } .fields-row__column.fields-group.fields-row__column-6 %h6= t('verification.verification') |