-
Notifications
You must be signed in to change notification settings - Fork 3
Add the sub provider field to UI #1173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
17238cc
f30dad9
d0b9037
a591422
11cc361
7e3b635
40443e2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,6 +75,8 @@ class Application < Rails::Application | |
| config.x.site_short_name = ENV.fetch('SITE_SHORT_NAME', 'SOFIA') | ||
| config.x.site_long_name = ENV.fetch('SITE_LONG_NAME', 'Streepsysteem voor de Ordentelijke Festiviteiten van Inleggend Alpha') | ||
| config.x.site_association = ENV.fetch('SITE_ASSOCIATION', 'C.S.V. Alpha') | ||
|
|
||
|
||
| config.x.subprovider_label = ENV.fetch('SUBPROVIDER_LABEL', nil) | ||
| config.x.deposit_button_enabled = ENV.fetch('DEPOSIT_BUTTON_ENABLED', 'true') == 'true' | ||
|
|
||
| config.x.min_payment_amount = [ENV.fetch('MIN_PAYMENT_AMOUNT', '21.8').to_f, 0.01].max | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Standardize the label capitalization.
The label 'Subprovider' here differs from 'SubProvider' used in
_edit_sofia_account_modal.html.erb(line 25). For consistency, use the same capitalization across both modals.Note: A previous review comment already flagged that uppercase transformation should be implemented server-side.
🔎 Suggested fix to match the edit modal's capitalization:
📝 Committable suggestion
🤖 Prompt for AI Agents