Skip to content

Commit 863da3a

Browse files
authored
Merge pull request #7409 from umbraco/ui-builder-vale-fixes
Fixed all vale errors in UI Builder articles
2 parents 97ceb14 + 5de4859 commit 863da3a

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

16/umbraco-ui-builder/areas/dashboards.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ description: Configuring Dashboards in Umbraco UI Builder.
44

55
# Dashboards
66

7-
Dashboards in Umbraco UI Builder provide an intuitive way to present important information and tools at the root of a section within the Umbraco backoffice. They serve as a starting point for users, offering quick access to relevant data, insights, or actions. Dashboards can be customized, reordered, and configured to display for specific user groups, making them a flexible tool for enhancing the backoffice experience. When multiple dashboards are available in a section, they appear in a tabbed layout for easy navigation.
7+
Dashboards in Umbraco UI Builder provide an intuitive way to present important information and tools at the root of a section within the Umbraco backoffice. They serve as a starting point for users, offering quick access to relevant data, insights, or actions. Dashboards can be customized, reordered, and configured to display for specific user groups, making them a flexible tool for enhancing the backoffice experience. When multiple dashboards are available in a section, they appear in a tabbed layout for navigation.
88

99
![Dashboards](../images/dashboards.png)
1010

1111
## Defining a Dashboard
1212

13-
You can define a dashboard by calling one of the `AddDashboard` methods on a [`SectionConfigBuilder`](sections.md) or a [`WithSectionConfigBuilder`](sections.md#extending-an-existing-section) instance.
13+
You can define a dashboard by calling one of the `AddDashboard` methods on a [`SectionConfigBuilder`](sections.md) or a [`WithSectionConfigBuilder`](sections.md#extending-existing-sections) instance.
1414

1515
### Using the `AddDashboard()` Method
1616

16/umbraco-ui-builder/cards/custom-cards.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class AvgPersonAgeCard : Card
3636
| Name | The name of the card. | Yes |
3737
| Alias | A unique alias for the card. | Yes |
3838
| GetValue(object parentId = null) | A method to retrieve the card's value. | Yes |
39-
| Icon | An icon displaed in the card. | No |
39+
| Icon | An icon displayed in the card. | No |
4040
| Color | The color of the card. | No |
4141
| Suffix | The suffix displayed after the card value. | No |
4242

16/umbraco-ui-builder/changelog-archive/changelog.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ description: Changelog for Konstrukt, the backoffice UI builder for Umbraco.
1818
**Description:** Patch release with bug fixes
1919

2020
- Moved encrypted properties implementation to the base repository class so encryption is honored when performing save/load operation directly against the repository API.
21-
- Made `SecurityHelper` swappable so you can use something other than the default `DataProtectionProvider` implementation that comes out of the box (OOTB).
21+
- Made `SecurityHelper` swappable so you can use something other than the default `DataProtectionProvider` implementation that comes out of the box.
2222
- Fixed issue with advanced filters that use the lambda `ParameterReplacer` due to the parameter being replaced in the function, but not in the Lambda parameters list.
2323
- Fixed date filters not working on mobile resolution devices.
2424

@@ -62,7 +62,7 @@ description: Changelog for Konstrukt, the backoffice UI builder for Umbraco.
6262

6363
- Fixed searchable properties not being searched in a case-insensitive way for repositories that don't use Umbraco's NPoco extension methods.
6464
- Fixed regression in Konstrukt repository not correctly combining filters.
65-
- Fixed exception due to `ServiceProvider` not getting passed to Data transfer object (DTO) mapper.
65+
- Fixed exception due to `ServiceProvider` not getting passed to Data Transfer Object (DTO) mapper.
6666

6767
## v1.5.0
6868

@@ -89,16 +89,16 @@ description: Changelog for Konstrukt, the backoffice UI builder for Umbraco.
8989
**Date:** 2022-07-12
9090
**Description:** Minor release with additional features and bug fixes
9191

92-
- Added [`WithSection`](../areas/sections.md#extending-an-existing-section) / [`WithTree`](../areas/trees.md#extending-an-existing-tree) API to create more logical API groupings and to set context for some APIs.
92+
- Added [`WithSection`](../areas/sections.md#extending-existing-sections) / [`WithTree`](../areas/trees.md#extending-an-existing-tree) API to create more logical API groupings and to set context for some APIs.
9393
- Added [`AddTree`](../areas/trees.md#adding-a-tree-to-an-existing-section) support to allow adding a tree to an existing section (currently only able to add 1 Konstrukt tree per section).
9494
- Added [Tree Group](../areas/trees.md#adding-a-group-to-a-tree) support to allow grouping root-level tree folders/collections.
9595
- Added [Tab Sidebar](../collections/editors.md#configuring-a-sidebar-to-a-tab) support to allow showing metadata on the right-hand side of the editor.
9696
- Added file upload support to the actions dialog
97-
- Added a basic [Comma-separated values (CSV) Import](../actions/inbuilt-actions.md#konstruktimportentityaction) action
97+
- Added a basic [Comma-separated Values (CSV) Import](../actions/inbuilt-actions.md#importentityaction) action
9898
- Added [`HideLabel`](../collections/editors.md#hiding-the-label-of-a-field) support to editor fields to explicitly hide the label.
9999
- Added explicit Insert / Update methods to IKonstruktRepository. Internally we use these now instead of the Save method as the Save method isn't reliably able to determine if an entity is new.
100100
- Added better support for transient / scoped repository dependencies (example: better support for EF Core DB contexts which are by default registered as scoped)
101-
- Obsoleted root-level APIs for `AddSection`, `AddDashboard` and `AddVirtualSubTree` which have now moved to sub-configurations of the [`WithSection`](../areas/sections.md#extending-an-existing-section) or [`WithTree`](../areas/trees.md#extending-an-existing-tree) APIs.
101+
- Obsoleted root-level APIs for `AddSection`, `AddDashboard` and `AddVirtualSubTree` which have now moved to sub-configurations of the [`WithSection`](../areas/sections.md#extending-existing-sections) or [`WithTree`](../areas/trees.md#extending-an-existing-tree) APIs.
102102
- Fixed bug with DataViews resolving the wrong filter when using groups and the data view has the same name as a view in a different group. We now prefix the data view alias with the group name to ensure uniqueness across groups.
103103
- Fixed bug in child collections creating dialog thinking it was always editing an existing entity and so wrongfully trying to load an entity from the DB due to the fact the entity ID passed through to the dialog "0" when it should be "-1".
104104

@@ -119,7 +119,7 @@ description: Changelog for Konstrukt, the backoffice UI builder for Umbraco.
119119
- Added `DeletedProperty` support where the column type is an `int`, and the value is a unix timestamp
120120
- Fixed bug with encrypted properties not handling `null` values
121121
- **[Breaking]** - Updated minimum Umbraco dependency to v10
122-
- **[Breaking]** - Updated UI assets to be a (RCL) Razor Compiled Library. **Be sure to clean your solution to remove old files**.
122+
- **[Breaking]** - Updated UI assets to be a Razor Compiled Library (RCL). **Be sure to clean your solution to remove old files**.
123123

124124
## v1.1.1
125125

@@ -149,7 +149,7 @@ description: Changelog for Konstrukt, the backoffice UI builder for Umbraco.
149149
- Fixed entity picker value converter not working
150150
- Fixed JS error when editing content due to bad null checking in the Konstrukt `redirectId` interceptor
151151
- Deprecated List View Layout support
152-
- **[Breaking]** - Obsoleted bulk actions and menu items in favour of new actions API
152+
- **[Breaking]** - Obsoleted bulk actions and menu items in favor of new actions API
153153
- **[Breaking]** - Moved actions, data views and cards configuration out of list views onto collections API
154154

155155
## v1.0.2

16/umbraco-ui-builder/collections/field-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For field views, place a view file in the `/Views/Shared/Components/FieldView` f
1919
<!-- Insert your markup here -->
2020
````
2121

22-
WTo register the view, pass the name of the view file (excluding the `.cshtml` file extension) to the relevant API method.
22+
To register the view, pass the name of the view file (excluding the `.cshtml` file extension) to the relevant API method.
2323

2424
### Custom View Component
2525

16/umbraco-ui-builder/filtering/data-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ collectionConfig.AddDataView("Status", "Active", p => p.IsActive);
4848

4949
Enables the `All` option for data views in the collection. The method can take an empty string, which will display the CMS localized `All` value, plain text, or a localized string.
5050

51-
#### Method Synthax
51+
#### Method Syntax
5252

5353
```cs
5454
collectionConfig.AddAllDataView(string? label)

16/umbraco-ui-builder/guides/creating-your-first-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ With the database and model set up, it is time to configure Umbraco UI Builder t
6969
You can configure Umbraco UI Builder either through a Composer or by using the `AddUIBuilder` extension method in `Program.cs`.
7070
{% endhint %}
7171

72-
The following steps cover the `Program.cs` approach. For more details, including configuring via a Composer, see the the [Configuration](../getting-started/configuration.md) article.
72+
The following steps cover the `Program.cs` approach. For more details, including configuring via a Composer, see the [Configuration](../getting-started/configuration.md) article.
7373

7474
### Configuring via `Program.cs`
7575

16/umbraco-ui-builder/miscellaneous/conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ config.AddSection("Repositories")
1616
.AddCollection<People>(p => p.Id, "Person", "People");
1717
```
1818

19-
### Lambda Expression Example Example
19+
### Lambda Expression Example
2020

2121
```csharp
2222
config.AddSection("Repositories", sectionConfig => {

0 commit comments

Comments
 (0)