File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
authentication/pages/Login Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,9 @@ class Login extends Component {
247247 this . redirectIfAlreadyLoggedIn ( ) ;
248248 return (
249249 < >
250- < Banner />
250+ < Overridable id = "Login.extras" >
251+ < Banner />
252+ </ Overridable >
251253 < LoginLayout
252254 hasError = { hasError }
253255 errorHeader = { errorHeader }
Original file line number Diff line number Diff line change @@ -4,13 +4,16 @@ import { Notifications } from '@components/Notifications';
44import PropTypes from 'prop-types' ;
55import React , { Component } from 'react' ;
66import BackOfficeRoutesSwitch from './BackOfficeRoutesSwitch' ;
7+ import Overridable from 'react-overridable' ;
78
89export class BackOffice extends Component {
910 render ( ) {
1011 const { location } = this . props ;
1112 return (
1213 < >
13- < Banner />
14+ < Overridable id = "BackOffice.extras" >
15+ < Banner />
16+ </ Overridable >
1417 < div className = "backoffice" >
1518 < div className = "bo-sidebar" >
1619 < Sidebar location = { location } />
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ export default class FrontSite extends Component {
3737 < ILSMenu />
3838 < Notifications className = "compact" />
3939 < Container fluid className = "fs-content" >
40- < Banner />
40+ < Overridable id = "FrontSite.extras" >
41+ < Banner />
42+ </ Overridable >
4143 < Switch >
4244 < Route
4345 exact
You can’t perform that action at this time.
0 commit comments