-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ideal issuer select doesn't have a bank selected by default anymore
- Loading branch information
Roel van Hintum
committed
Jul 7, 2023
1 parent
53134f7
commit 156ca59
Showing
4 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
<div class="buckaroo-form"> | ||
<select name="issuer"> | ||
{% for id, name in issuers %} | ||
<select name="issuer" required> | ||
<option disabled selected value="">{{ 'ideal:issuer:placeholder'|t('commerce-buckaroo') }}</option> | ||
{% for id, name in issuers %} | ||
<option value="{{ id }}">{{ name }}</option> | ||
{% endfor %} | ||
{% endfor %} | ||
</select> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
return [ | ||
'ideal:issuer:placeholder' => 'Select your bank', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?php | ||
|
||
return [ | ||
'ideal:issuer:placeholder' => 'Kies jouw bank', | ||
]; |