We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think this line would break if the if (error) condition were true, because JS arrays don't have an .append method.
if (error)
.append
My IDE was complaining until I changed it.
accept-a-payment/payment-element/client/vue-cva/src/components/SrReturn.vue
Line 28 in d7c83fe
The text was updated successfully, but these errors were encountered:
Right, this causes an error like below.
TypeError: messages.value.append is not a function
We should use push instead of it like L30 of the same file.
push
Line 30 in d7c83fe
Sorry, something went wrong.
Array does not have append method
append
14c478e
Reported by @cobbzilla Fixes #2543
Successfully merging a pull request may close this issue.
I think this line would break if the
if (error)
condition were true, because JS arrays don't have an.append
method.My IDE was complaining until I changed it.
accept-a-payment/payment-element/client/vue-cva/src/components/SrReturn.vue
Line 28 in d7c83fe
The text was updated successfully, but these errors were encountered: