Skip to content

Commit

Permalink
Prepare 3.16.1 (#530)
Browse files Browse the repository at this point in the history
* Replace nullish coalescing operator

* Shopware 6.4 frontend asset

* Version bump

* Shopware 6.5 frontend assets

---------

Co-authored-by: Can Demiralp <[email protected]>
  • Loading branch information
candemiralp and Can Demiralp authored Aug 2, 2024
1 parent 5875aca commit 6c1ebb9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
],
"description": "Official Shopware 6 Plugin to connect to Payment Service Provider Adyen",
"version": "3.16.0",
"version": "3.16.1",
"type": "shopware-platform-plugin",
"license": "MIT",
"require": {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -522,8 +522,8 @@ export default class ConfirmOrderPlugin extends Plugin {
},
onSubmit: function(state, component) {
if (state.isValid) {
if (isOneClick) {
state.data.paymentMethod.holderName = paymentMethod.holderName ?? '';
if (isOneClick && typeof paymentMethod.holderName !== "undefined") {
state.data.paymentMethod.holderName = paymentMethod.holderName;
}

let extraParams = {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 6c1ebb9

Please sign in to comment.