From c1bf3a7e154d3e11c7dd493a6272ec033cf7d9aa Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 11 Jul 2024 12:02:39 +0200 Subject: [PATCH 1/2] bump version to 13.4.1 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index 288af47e08..3b44f006d5 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json", - "version": "13.5.0-rc", + "version": "13.4.1", "assemblyVersion": { "precision": "build" }, From d72fc5c4e83c71dfee73b45fc2eacf5158a040e6 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:41:20 +0200 Subject: [PATCH 2/2] fix: revert the `inert` attribute on Tours since you are expected to be able to work with the background in certain steps --- .../components/application/umbtour/umbtourstep.directive.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/application/umbtour/umbtourstep.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/application/umbtour/umbtourstep.directive.js index 53ff989c7d..c54f907d44 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/application/umbtour/umbtourstep.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/application/umbtour/umbtourstep.directive.js @@ -14,18 +14,15 @@ (function () { 'use strict'; - function TourStepDirective(focusLockService) { + function TourStepDirective() { function link(scope, element, attrs, ctrl) { scope.close = function () { if (scope.onClose) { scope.onClose(); - focusLockService.removeInertAttribute(); } } - - focusLockService.addInertAttribute(); } var directive = {