Skip to content

Commit

Permalink
fix NeonPage notification layout bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Frencil committed Aug 12, 2020
1 parent 8a481c9 commit 6898a10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lib/components/NeonPage/NeonPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -776,10 +776,10 @@ var NeonPage = function NeonPage(props) {
},
"data-selenium": "neon-page.content",
ref: contentRef
}, renderBreadcrumbs(), renderTitle(), content), /*#__PURE__*/_react.default.createElement(_LiferayNotifications.default, {
}, renderBreadcrumbs(), renderTitle(), content)), /*#__PURE__*/_react.default.createElement(_LiferayNotifications.default, {
notifications: notifications,
onHideNotifications: handleHideNotifications
}), /*#__PURE__*/_react.default.createElement(_BrowserWarning.default, null)), /*#__PURE__*/_react.default.createElement(_NeonFooter.default, {
}), /*#__PURE__*/_react.default.createElement(_BrowserWarning.default, null), /*#__PURE__*/_react.default.createElement(_NeonFooter.default, {
drupalCssLoaded: drupalCssLoaded
}), renderLoading(), renderError());
};
Expand Down
10 changes: 5 additions & 5 deletions src/lib_components/components/NeonPage/NeonPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -679,12 +679,12 @@ const NeonPage = (props) => {
{renderTitle()}
{content}
</div>
<LiferayNotifications
notifications={notifications}
onHideNotifications={handleHideNotifications}
/>
<BrowserWarning />
</Container>
<LiferayNotifications
notifications={notifications}
onHideNotifications={handleHideNotifications}
/>
<BrowserWarning />
<NeonFooter drupalCssLoaded={drupalCssLoaded} />
{renderLoading()}
{renderError()}
Expand Down

0 comments on commit 6898a10

Please sign in to comment.