Clean up labels on development application form (#32116)

This commit is contained in:
Matt Jankowski 2024-10-02 10:45:12 -04:00 committed by Claire
parent aa46348c03
commit 5c72b46a4e
3 changed files with 10 additions and 11 deletions

View file

@ -18,7 +18,7 @@
.field-group
.input.with_block_label
%label= t('activerecord.attributes.doorkeeper/application.scopes')
= form.label t('activerecord.attributes.doorkeeper/application.scopes'), required: true
%span.hint= t('simple_form.hints.defaults.scopes')
- Doorkeeper.configuration.scopes.group_by { |s| s.split(':').first }.each_value do |value|
@ -29,7 +29,7 @@
hint: false,
include_blank: false,
item_wrapper_tag: 'li',
label_method: ->(scope) { safe_join([content_tag(:samp, scope, class: class_for_scope(scope)), content_tag(:span, t("doorkeeper.scopes.#{scope}"), class: 'hint')]) },
label_method: ->(scope) { label_for_scope(scope) },
label: false,
required: false,
selected: form.object.scopes.all,