From 389a8db768c5d8f347166a303c34a42804cfedc4 Mon Sep 17 00:00:00 2001 From: Daniel Goerz <daniel.goerz@posteo.de> Date: Thu, 18 Apr 2019 09:09:46 +0200 Subject: [PATCH] [BUGFIX] Make loading of depth in workspace module work for 0 The implementation of storing the depth selection in the workspace module did not account for the "This site" option and the according value "0". With this patch now all options of the depth selector can be stored and loaded from UC. Resolves: #88168 Releases: master, 9.5 Change-Id: I21ea3a4e300dbb71516679ea9f5ac901364b0c4c Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/60508 Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de> Reviewed-by: Achim Fritz <af@achimfritz.de> Reviewed-by: Benni Mack <benni@typo3.org> Tested-by: Achim Fritz <af@achimfritz.de> Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Benni Mack <benni@typo3.org> --- .../sysext/workspaces/Resources/Public/JavaScript/Backend.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js index 0da8b7ac3dea..dfc1aef543da 100644 --- a/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js +++ b/typo3/sysext/workspaces/Resources/Public/JavaScript/Backend.js @@ -69,11 +69,12 @@ define([ }; Backend.initialize = function() { - var persistedDepth = Persistent.get('Workspaces.Module.depth'); + var persistedDepth; Backend.getElements(); Backend.registerEvents(); - if (persistedDepth > 0) { + if (Persistent.isset('Workspaces.Module.depth')) { + persistedDepth = Persistent.get('Workspaces.Module.depth'); Backend.elements.$depthSelector.val(persistedDepth); Backend.settings.depth = persistedDepth; } else { -- GitLab