From c291b3e3a7f311213ddf6292ab8a10df539a8b32 Mon Sep 17 00:00:00 2001 From: Jakub Brzegowski Date: Wed, 6 Mar 2019 09:33:35 +0100 Subject: [PATCH] EZP-30223: Fix updating Content Tree container height --- .../Resources/public/js/scripts/admin.location.content.tree.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bundle/Resources/public/js/scripts/admin.location.content.tree.js b/src/bundle/Resources/public/js/scripts/admin.location.content.tree.js index 9a23544377..7f659a6302 100644 --- a/src/bundle/Resources/public/js/scripts/admin.location.content.tree.js +++ b/src/bundle/Resources/public/js/scripts/admin.location.content.tree.js @@ -13,6 +13,7 @@ const toggleContentTreePanel = () => { contentTreeContainer.classList.toggle(CLASS_CONTENT_TREE_EXPANDED); btn.classList.toggle(CLASS_BTN_CONTENT_TREE_EXPANDED); + updateContentTreeWrapperHeight(); localStorage.setItem(KEY_CONTENT_TREE_EXPANDED, contentTreeContainer.classList.contains(CLASS_CONTENT_TREE_EXPANDED)); };