mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
Don't try to select a card if there is no selectTarget
This error was being thrown when the user had no cards saved: ``` Error: Missing target element "stripe-cards.select" ```
This commit is contained in:
@@ -6,7 +6,9 @@ export default class extends Controller {
|
||||
static targets = ["stripeelements", "select"];
|
||||
|
||||
connect() {
|
||||
this.selectCard(this.selectTarget.value);
|
||||
if (this.hasSelectTarget) {
|
||||
this.selectCard(this.selectTarget.value);
|
||||
}
|
||||
}
|
||||
|
||||
onSelectCard(event) {
|
||||
|
||||
Reference in New Issue
Block a user