Skip to content

Commit 154c43c

Browse files
authored
Apply suggestions from code review
1 parent 0e061f5 commit 154c43c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

14/umbraco-cms/customizing/extending-overview/extension-types/entity-create-option-action.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ These options will be displayed in a create options dialog when the "Create"-ent
66

77
To enable a "Create"-entity action to show the options dialog, use the 'create'-kind in the manifest when setting up the "Create"-entity action. This will display the options dialog if multiple options are available, or it will automatically execute the first option if only one is available.
88

9-
By using the "create"-kind for your create entity actions, even though you only have one option available, you can ensure that your options are extendable by other developers.
9+
By using the "create"-kind for your create entity actions, you can ensure that your options are extendable by other developers. This also applies when you only have one option available
1010

11-
Register a "Create"-entity action that can display a dialog with options:
11+
The following code shows you to register a "Create"-entity action that can display a dialog with options:
1212

1313
```typescript
1414
const manifest = {
@@ -20,7 +20,7 @@ const manifest = {
2020
};
2121
```
2222

23-
Registering an Entity Create Option Action. If the option is the only one available, it will be executed right away.
23+
The following code demonstrates how to register an Entity Create Option Action. If only one option is available, it will be executed immediately.
2424

2525
```typescript
2626
const manifest = {
@@ -38,7 +38,7 @@ const manifest = {
3838
};
3939
```
4040

41-
Implementing the Create Action Option.
41+
The following code shows how to implement the Create Action Option.
4242

4343
```typescript
4444
import {
@@ -64,4 +64,4 @@ export class MyEntityCreateActionOption extends UmbEntityCreateOptionActionBase
6464

6565
We currently support Create Options for the following entity types:
6666

67-
- user
67+
- User

0 commit comments

Comments
 (0)