From 8cafd0f301691237dc102c43ea3a892fb20837f8 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 7 Aug 2020 17:59:57 -0500 Subject: [PATCH] Fixed issue with page not scrolling after opening SidebarXS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed: - issue with page not scrolling after opening SidebarXS --- app/javascript/gabsocial/components/sidebar_xs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/gabsocial/components/sidebar_xs.js b/app/javascript/gabsocial/components/sidebar_xs.js index ed104a58..112cdb3a 100644 --- a/app/javascript/gabsocial/components/sidebar_xs.js +++ b/app/javascript/gabsocial/components/sidebar_xs.js @@ -79,6 +79,7 @@ class SidebarXS extends ImmutablePureComponent { } handleSidebarClose = () => { + document.body.classList.remove(_s.overflowYHidden) this.props.onCloseSidebar() }