0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Added class selector to notification iframe

no refs
This commit is contained in:
Rish 2021-03-19 12:54:19 +05:30
parent 8c6c13156f
commit d871166ebb

View file

@ -221,7 +221,7 @@ export default class Notification extends React.Component {
const {type, status, autoHide, duration} = this.state;
if (type && status) {
return (
<Frame style={frameStyle} title="portal-notification" head={this.renderFrameStyles()}>
<Frame style={frameStyle} title="portal-notification" head={this.renderFrameStyles()} className='gh-portal-notification-iframe' >
<NotificationContent {...{type, status, autoHide, duration}} onHideNotification={e => this.onHideNotification(e)} />
</Frame>
);