Skip to content

Commit 2fa692c

Browse files
authored
Merge pull request #6565 from jacksorjacksor/patch-9
Update backoffice-search.md
2 parents d097c1e + 5e794f7 commit 2fa692c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

14/umbraco-cms/extending/backoffice-search.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ An Umbraco implementation might have additional custom properties that it would
1616

1717
## Adding custom properties to backoffice search
1818

19-
To add custom properties, it is required to register a custom implementation of `IUmbracoTreeSearcherFields`. We recommend to override the existing `UmbracoTreeSearcherFields`.
19+
To add custom properties you must register a custom implementation of `IUmbracoTreeSearcherFields`. We recommend overriding the existing `UmbracoTreeSearcherFields`.
2020

21-
Your custom implementation needs to be registered in the container. For example in the `Program.cs` file or in a composer, as an alternative.
21+
Your custom implementation needs to be registered in the container, for example in the `Program.cs` file or in a composer, as an alternative.
2222

2323
```csharp
2424
builder.CreateUmbracoBuilder()
@@ -51,7 +51,7 @@ public class BackofficeSearchComposer : IComposer
5151
```
5252

5353
{% hint style="warning" %}
54-
The below example is using `ILocalizationService` which is currently obselete and will be removed in v15. Use `ILanguageService` instead.
54+
The below example is using `ILocalizationService` which is currently obsolete and will be removed in v15. Use `ILanguageService` instead.
5555
{% endhint %}
5656

5757
```csharp
@@ -95,9 +95,9 @@ public class CustomUmbracoTreeSearcherFields : UmbracoTreeSearcherFields, IUmbra
9595
```
9696

9797
{% hint style="warning" %}
98-
You cannot use this to search on integer types in the index, as an example `parentID` does not work.
98+
You cannot use this to search on integer types in the index, for example `parentID` does not work.
9999
{% endhint %}
100100

101101
## More advanced extensions
102102

103-
For further extensibility of the Umbraco Backoffice search implementation check [ISearchableTree](../customizing/searchable-trees.md)
103+
For further extensibility of the Umbraco Backoffice search implementation, check [ISearchableTree](../customizing/searchable-trees.md)

0 commit comments

Comments
 (0)