From e56c1cc2084f57f7bb16c9c8ed96a1abf09c256f Mon Sep 17 00:00:00 2001 From: Mole Date: Mon, 22 Nov 2021 01:46:29 +0100 Subject: [PATCH] Fix the introduction tour getting lost if dashboard is not shown (#10597) * Add conditional step that navigates users to the content section * tweaked the text in the sections step as it refers to being in the content section, which may not always be the case (hence this PR) Co-authored-by: Nathan Woulfe --- .../config/BackOfficeTours/getting-started.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI/config/BackOfficeTours/getting-started.json b/src/Umbraco.Web.UI/config/BackOfficeTours/getting-started.json index 574f2f6223..7acc818f55 100644 --- a/src/Umbraco.Web.UI/config/BackOfficeTours/getting-started.json +++ b/src/Umbraco.Web.UI/config/BackOfficeTours/getting-started.json @@ -47,7 +47,15 @@ "element": "[data-element='section-content']", "elementPreventClick": true, "title": "Sections", - "content": "Each area in Umbraco is called a Section. Right now you are in the Content section, when you want to go to another section simply click on the appropriate name in the main menu and you'll be there in no time.", + "content": "Each area in Umbraco is called a Section. The current section is highlighted in the main menu, when you want to go to another section click on the name and you'll be there in no time.", + "backdropOpacity": 0.6 + }, + { + "element": "[data-element='section-content']", + "skipStepIfVisible": "[data-element='dashboard']", + "title": "Content section", + "content": "Try clicking Content to enter the content section.", + "event": "click", "backdropOpacity": 0.6 }, {