Skip to content

Commit 6898a10

Browse files
committed
fix NeonPage notification layout bug
1 parent 8a481c9 commit 6898a10

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/components/NeonPage/NeonPage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -776,10 +776,10 @@ var NeonPage = function NeonPage(props) {
776776
},
777777
"data-selenium": "neon-page.content",
778778
ref: contentRef
779-
}, renderBreadcrumbs(), renderTitle(), content), /*#__PURE__*/_react.default.createElement(_LiferayNotifications.default, {
779+
}, renderBreadcrumbs(), renderTitle(), content)), /*#__PURE__*/_react.default.createElement(_LiferayNotifications.default, {
780780
notifications: notifications,
781781
onHideNotifications: handleHideNotifications
782-
}), /*#__PURE__*/_react.default.createElement(_BrowserWarning.default, null)), /*#__PURE__*/_react.default.createElement(_NeonFooter.default, {
782+
}), /*#__PURE__*/_react.default.createElement(_BrowserWarning.default, null), /*#__PURE__*/_react.default.createElement(_NeonFooter.default, {
783783
drupalCssLoaded: drupalCssLoaded
784784
}), renderLoading(), renderError());
785785
};

src/lib_components/components/NeonPage/NeonPage.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -679,12 +679,12 @@ const NeonPage = (props) => {
679679
{renderTitle()}
680680
{content}
681681
</div>
682-
<LiferayNotifications
683-
notifications={notifications}
684-
onHideNotifications={handleHideNotifications}
685-
/>
686-
<BrowserWarning />
687682
</Container>
683+
<LiferayNotifications
684+
notifications={notifications}
685+
onHideNotifications={handleHideNotifications}
686+
/>
687+
<BrowserWarning />
688688
<NeonFooter drupalCssLoaded={drupalCssLoaded} />
689689
{renderLoading()}
690690
{renderError()}

0 commit comments

Comments
 (0)