From df996552c30c30defc9898ab778f3bc5798a3812 Mon Sep 17 00:00:00 2001 From: Vladislav Makhov Date: Tue, 30 Jun 2020 06:26:31 +0300 Subject: [PATCH] Make Header component is available on login page --- web/ASC.Web.Common/src/components/Layout/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ASC.Web.Common/src/components/Layout/index.js b/web/ASC.Web.Common/src/components/Layout/index.js index d619293ca3..02a3de80e0 100644 --- a/web/ASC.Web.Common/src/components/Layout/index.js +++ b/web/ASC.Web.Common/src/components/Layout/index.js @@ -74,7 +74,7 @@ class Layout extends React.Component { const newState = { isBackdropAvailable: mainModules.length > 0 || !!props.asideContent, isHeaderNavAvailable: isolateModules.length > 0 || !!props.currentUser, - isHeaderAvailable: mainModules.length > 0, + isHeaderAvailable: mainModules.length > 0 || !props.currentUser, isNavAvailable: mainModules.length > 0, isAsideAvailable: !!props.asideContent,