@@ -163,31 +153,31 @@ A sample `checkout_index_index.xml` follows:
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
- %Vendor%_%Module%/js/view/my-step-view
-
-
-
- - 2
- -
-
-
+
+
+ -
+
-
+
-
+
-
+
-
+
+
-
+
- %Vendor%_%Module%/js/view/my-step-view
+
+
+
+ - 2
+ -
+
-
-
+
+
+
@@ -195,7 +185,7 @@ A sample `checkout_index_index.xml` follows:
## Step 3: Create mixins for payment and shipping steps (optional) {#create-mixin}
-If your new step is the first step, you have to create mixins for the payment and shipping steps. Otherwise two steps will be activated on loading of the checkout.
+If your new step is the first step, you have to create mixins for the payment and shipping steps. Otherwise, two steps will be activated on the loading of the checkout.
Create a mixin as follows:
@@ -219,28 +209,27 @@ Create a mixin as follows:
1. Create the mixin. We'll use the same mixin for both payment and shipping:
```js
- define(
- [
- 'ko'
- ], function (ko) {
- 'use strict';
-
- var mixin = {
-
- initialize: function () {
- this.isVisible = ko.observable(false); // set visible to be initially false to have your step show first
- this._super();
-
- return this;
- }
- };
-
- return function (target) {
- return target.extend(mixin);
- };
- }
- );
+ define([
+ 'ko'
+ ], function (ko) {
+ 'use strict';
+
+ var mixin = {
+
+ initialize: function () {
+ // set visible to be initially false to have your step show first
+ this.isVisible = ko.observable(false);
+ this._super();
+
+ return this;
+ }
+ };
+
+ return function (target) {
+ return target.extend(mixin);
+ };
+ });
```
- {:.bs-callout-info}
+{:.bs-callout-info}
For your changes to be applied, you might need to [clean layout cache]({{ page.baseurl }}/config-guide/cli/config-cli-subcommands-cache.html ) and [static view file cache]({{ page.baseurl }}/frontend-dev-guide/cache_for_frontdevs.html#clean_static_cache). For more info on mixins, see [JS Mixins]({{ page.baseurl }}/javascript-dev-guide/javascript/js_mixins.html).
diff --git a/src/guides/v2.3/javascript-dev-guide/javascript/js-resources.md b/src/guides/v2.3/javascript-dev-guide/javascript/js-resources.md
index 0aee01f324a..168449f0439 100644
--- a/src/guides/v2.3/javascript-dev-guide/javascript/js-resources.md
+++ b/src/guides/v2.3/javascript-dev-guide/javascript/js-resources.md
@@ -37,7 +37,7 @@ JS resources are accessed using relative paths.
**Example 1:**
* File actual location: `app/code/Magento/ConfigurableProduct/view/frontend/web/js/configurable.js`
-* File published to `pub/static`: `pub/static/frontend/Magento/
//Magento_ConfigurableProduct/js/configurable.js`. Here `` and `` are the currently applied in your instance [theme](https://glossary.magento.com/theme) and [locale](https://glossary.magento.com/locale).
+* File published to `pub/static`: `pub/static/frontend////Magento_ConfigurableProduct/js/configurable.js`. Here `` and `` are the currently applied in your instance [theme](https://glossary.magento.com/theme) and [locale](https://glossary.magento.com/locale).
* Called in script:
```javascript
@@ -59,7 +59,7 @@ JS resources are accessed using relative paths.
**Example 3:**
* File actual location: `lib/web/jquery.js`
-* File published to `pub/static`: `pub/static//Magento///jquery.js`
+* File published to `pub/static`: `pub/static/////jquery.js`
* Called in script:
```javascript
diff --git a/src/guides/v2.4/config-guide/prod/config-reference-most.md b/src/guides/v2.4/config-guide/prod/config-reference-most.md
index 97ddefd0b9c..3d7e108932a 100644
--- a/src/guides/v2.4/config-guide/prod/config-reference-most.md
+++ b/src/guides/v2.4/config-guide/prod/config-reference-most.md
@@ -406,7 +406,7 @@ Prefix Dropdown Options | `customer/address/prefix_options` | |
Show Suffix | `customer/address/suffix_show` | |
Suffix Dropdown Options | `customer/address/suffix_options` | |
-Show Date of Birth | `customer/address/dob_show` | |
+Show Date of Birth | `customer/address/dob_show`
In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.| |
Show Tax/VAT Number | `customer/address/taxvat_show` | |
Show Gender | `customer/address/gender_show` | |
Enable Store Credit Functionality | `customer/magento_customerbalance/is_enabled` |  |
diff --git a/src/guides/v2.4/graphql/mutations/create-customer-v2.md b/src/guides/v2.4/graphql/mutations/create-customer-v2.md
index 91713681c3c..df91f21d72e 100644
--- a/src/guides/v2.4/graphql/mutations/create-customer-v2.md
+++ b/src/guides/v2.4/graphql/mutations/create-customer-v2.md
@@ -62,7 +62,7 @@ The following table lists the attributes you can use as input for the `createCus
Attribute | Data Type | Description
--- | --- | ---
`allow_remote_shopping_assistance` | Boolean | Indicates whether the customer has enabled remote shopping assistance
-`date_of_birth` | String | The customer’s date of birth
+`date_of_birth` | String | The customer’s date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth
`email` | String! | The customer’s email address
`firstname` | String! | The customer’s first name
diff --git a/src/guides/v2.4/graphql/mutations/update-customer-v2.md b/src/guides/v2.4/graphql/mutations/update-customer-v2.md
index 3f73fec468e..ca52c8e33c1 100644
--- a/src/guides/v2.4/graphql/mutations/update-customer-v2.md
+++ b/src/guides/v2.4/graphql/mutations/update-customer-v2.md
@@ -57,7 +57,7 @@ The following table lists the attributes you can use as input for the `updateCus
Attribute | Data Type | Description
--- | --- | ---
`allow_remote_shopping_assistance` | Boolean | Indicates whether the customer has enabled remote shopping assistance
-`date_of_birth` | String | The customer’s date of birth
+`date_of_birth` | String | The customer’s date of birth. In keeping with current security and privacy best practices, be sure you are aware of any potential legal and security risks associated with the storage of customers’ full date of birth (month, day, year) along with other personal identifiers, such as full name, before collecting or processing such data.
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer’s date of birth
`firstname` | String | The customer’s first name
`gender` | Int | The customer's gender (Male - 1, Female - 2)
diff --git a/src/guides/v2.4/graphql/queries/category.md b/src/guides/v2.4/graphql/queries/category.md
index 0cfcb903a27..420b3249f2e 100644
--- a/src/guides/v2.4/graphql/queries/category.md
+++ b/src/guides/v2.4/graphql/queries/category.md
@@ -210,3 +210,10 @@ The query returns a `CategoryTree` object, which implements [`CategoryInterface`
Attribute | Data type | Description
--- | --- | ---
`children` | `CategoryTree` | An array containing the next level of subcategories. By default, you can specify up to 10 levels of child categories
+
+## Errors
+
+Error | Description
+--- | ---
+`Category doesn't exist` | The specified category ID value does not exist.
+`Field "category" argument "id" requires type Int, found "XXX"` | The specified `id` argument value has the wrong type.
\ No newline at end of file