From 00122d83da988f36913508a5230559f201133b07 Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Thu, 21 Sep 2023 14:05:44 +0200 Subject: [PATCH 1/3] Replace 'note that' --- new-backoffice/tutorials/creating-a-custom-dashboard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-backoffice/tutorials/creating-a-custom-dashboard.md b/new-backoffice/tutorials/creating-a-custom-dashboard.md index 55075c943df..a3998e6ebf7 100644 --- a/new-backoffice/tutorials/creating-a-custom-dashboard.md +++ b/new-backoffice/tutorials/creating-a-custom-dashboard.md @@ -99,7 +99,7 @@ Notice that the file for our dashboard extension is in the root of our WelcomeDa 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. {% hint style="info" %} -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. +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. {% endhint %} ## 2. Creating the Dashboard Web Component From 0a15baec379d2fe7598e07978265f11d19367b03 Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Thu, 21 Sep 2023 14:05:59 +0200 Subject: [PATCH 2/3] Remove the word simple --- new-backoffice/tutorials/creating-a-custom-dashboard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-backoffice/tutorials/creating-a-custom-dashboard.md b/new-backoffice/tutorials/creating-a-custom-dashboard.md index a3998e6ebf7..5f427d7e20e 100644 --- a/new-backoffice/tutorials/creating-a-custom-dashboard.md +++ b/new-backoffice/tutorials/creating-a-custom-dashboard.md @@ -106,7 +106,7 @@ Please be aware that the file`umbraco-package.json` is loaded into memory when U 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. -Let's start with setting the web component with some simple HTML and CSS: +Let's start with setting the web component with some HTML and CSS: {% code title="welcome-dashboard.element.ts" lineNumbers="true" %} ```typescript From 2bac3208df44d5bcc65ac94a19f30d86f2096c6a Mon Sep 17 00:00:00 2001 From: Erik-Jan Westendorp Date: Thu, 21 Sep 2023 14:06:14 +0200 Subject: [PATCH 3/3] Simple --- new-backoffice/tutorials/creating-a-custom-dashboard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new-backoffice/tutorials/creating-a-custom-dashboard.md b/new-backoffice/tutorials/creating-a-custom-dashboard.md index 5f427d7e20e..7fdda242ac7 100644 --- a/new-backoffice/tutorials/creating-a-custom-dashboard.md +++ b/new-backoffice/tutorials/creating-a-custom-dashboard.md @@ -147,6 +147,6 @@ You can now start up the Backoffice and see our new dashboard in the content sec ## Going Further -With all the steps completed, you should have a simple dashboard welcoming your users to the Backoffice. +With all the steps completed, you should have a dashboard welcoming your users to the Backoffice. In the next session, we will look into how to add localization to the dashboard using our own custom translations.