Skip to content

Commit bb4be99

Browse files
authored
Apply suggestions to 14
1 parent 37ab97d commit bb4be99

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

14/umbraco-deploy/deployment-workflow/import-with-migrations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ internal class ArtifactMigratorsComposer : IComposer
9090

9191
When an import is started, the following happens:
9292
1. Artifact signatures are read from the import provider (using `IArtifactImportProvider.GetArtifactSignatures()`).
93-
2. The artifact signatures are sorted based on dependencies with `Ordering` enabled (ensuring dependent items are processed in the correct order, e.g. parent items before children and data types before document types).
93+
2. The artifact signatures are sorted based on dependencies with `Ordering` enabled (ensuring dependent items are processed in the correct order, like parent items before children and data types before document types).
9494
3. For each artifact signature:
9595
1. Check whether the entity type is allowed to be imported.
9696
2. Publish an `ArtifactImportingNotification` (cancelling will skip importing the artifact).
@@ -122,7 +122,7 @@ Open source migrators may be built by HQ or the community for property editors f
122122

123123
#### Grid to Block Grid
124124

125-
The Grid editor introduced in Umbraco 7 has been removed from Umbraco 14. It's functionality is replaced with the Block Grid.
125+
The Grid editor introduced in Umbraco 7 has been removed from Umbraco 14. Its functionality is replaced with the Block Grid.
126126

127127
With Deploy migrators we have support for migrating Data Type configuration and property data between these property editors.
128128

@@ -146,7 +146,7 @@ internal sealed class DeployMigratorsComposer : IComposer
146146
```
147147

148148
{% hint style="info" %}
149-
The project you're importing into needs to know about any custom legacy Grid editor configurations to correctly migrate to the Block Grid editor. Umbraco 14 doesn't support reading the `grid.editors.config.js` and `package.manifest` (containing grid editors) files anymore, so you have to provide this by overriding the `GetGridEditors()` method of the artifact migrator.
149+
The project you are importing into needs to know about any custom legacy Grid editor configurations to migrate to the Block Grid editor correctly. Make sure to either copy the `grid.editors.config.js` and `package.manifest` (containing grid editors) files or override the `GetGridEditors()` method of the artifact migrator to provide this.
150150
{% endhint %}
151151

152152
These implementations make use of the following conventions to migrate the data:
@@ -233,7 +233,7 @@ The migrators add the following behavior:
233233
- `DocTypeGridEditorPropertyTypeMigrator` extends `GridPropertyTypeMigrator` and ensures the Doc Type Grid Editor values are mapped one-to-one to the block item data.
234234

235235
{% hint style="info" %}
236-
The artifact migrator adds the default DTGE grid editor configuration (with alias `docType`), which can be disabled by setting the `AddDefaultDocTypeGridEditor` property to `false` (in a custom/inherited class). Similar to the base migrator, any custom DTGE grid editor configurations need to be available to correctly migrate to the Block Grid editor.
236+
The artifact migrator adds the default DocTypeGridEditor configuration (with alias `docType`). This can be disabled by setting the `AddDefaultDocTypeGridEditor` property to `false` in a custom/inherited class. Similar to the base migrator, any custom DocTypeGridEditor configurations must be available to migrate to the Block Grid editor correctly.
237237
{% endhint %}
238238

239239
#### Migrating from Matryoshka

0 commit comments

Comments
 (0)