From 1289f9d9de9a6b92d9b351f45bdb8acb88eaeb46 Mon Sep 17 00:00:00 2001 From: Antoine Beaubien Date: Mon, 15 Mar 2021 04:00:50 -0400 Subject: [PATCH] Follow-up fix for facet panel resizing when using permalinks to restore facets (#3718) Closes #2891. --- main/webapp/modules/core/scripts/project.js | 1 + 1 file changed, 1 insertion(+) diff --git a/main/webapp/modules/core/scripts/project.js b/main/webapp/modules/core/scripts/project.js index 9d542dde7..e3d68d72c 100644 --- a/main/webapp/modules/core/scripts/project.js +++ b/main/webapp/modules/core/scripts/project.js @@ -184,6 +184,7 @@ Refine._showHideLeftPanel = function() { Refine.showLeftPanel = function() { $('div#body').removeClass("hide-left-panel"); + if(ui.browsingEngine == undefined || ui.browsingEngine.resize == undefined) return; resizeAll(); };