Skip to content

Commit 0cf1a4f

Browse files
authored
Merge pull request #5444 from erikjanwestendorp/creating-a-custom-dashboard
Uddate: Creating a custom dashboard - the new backoffice
2 parents 733e667 + 2bac320 commit 0cf1a4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

new-backoffice/tutorials/creating-a-custom-dashboard.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ Notice that the file for our dashboard extension is in the root of our WelcomeDa
9999
For more information about the `umbraco-package.json` file, read the article [Package Manifest](../extending/package-manifest.md). You should also read the [Dashboards](../extending/dashboards.md) article for more information about dashboard configurations.
100100

101101
{% hint style="info" %}
102-
Please note that the file`umbraco-package.json` is loaded into memory when Umbraco starts up. If you are changing or adding new configurations you will need to start and stop your application for it to be loaded.
102+
Please be aware that the file`umbraco-package.json` is loaded into memory when Umbraco starts up. If you are changing or adding new configurations you will need to start and stop your application for it to be loaded.
103103
{% endhint %}
104104

105105
## 2. Creating the Dashboard Web Component
106106

107107
Next, let's create a new ts file called `welcome-dashboard.element.ts`. This file is our web component and will contain all our HTML, CSS, and logic.
108108

109-
Let's start with setting the web component with some simple HTML and CSS:
109+
Let's start with setting the web component with some HTML and CSS:
110110

111111
{% code title="welcome-dashboard.element.ts" lineNumbers="true" %}
112112
```typescript
@@ -147,6 +147,6 @@ You can now start up the Backoffice and see our new dashboard in the content sec
147147

148148
## Going Further
149149

150-
With all the steps completed, you should have a simple dashboard welcoming your users to the Backoffice.
150+
With all the steps completed, you should have a dashboard welcoming your users to the Backoffice.
151151

152152
In the next session, we will look into how to add localization to the dashboard using our own custom translations.

0 commit comments

Comments
 (0)