File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ export class FooterComponent implements OnInit {
7373 this . showEndUserAgreement = this . appConfig . info . enableEndUserAgreement ;
7474 this . coarLdnEnabled$ = this . appConfig . info . enableCOARNotifySupport ? this . notifyInfoService . isCoarConfigEnabled ( ) : of ( false ) ;
7575 this . showSendFeedback$ = this . authorizationService . isAuthorized ( FeatureID . CanSendFeedback ) ;
76+ this . showTopFooter = this . appConfig . homePage . showTopFooter ;
7677
7778 this . footerMetadataValue$ = combineLatest ( {
7879 site$ : this . siteService . find ( ) . pipe (
Original file line number Diff line number Diff line change @@ -359,6 +359,7 @@ export class DefaultAppConfig implements AppConfig {
359359 } ;
360360
361361 homePage : HomeConfig = {
362+ showTopFooter : false ,
362363 recentSubmissions : {
363364 //The number of item showing in recent submission components
364365 pageSize : 5 ,
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ import { Config } from './config.interface';
44 * Config that determines how the recentSubmissions list showing at home page
55 */
66export interface HomeConfig extends Config {
7+ /**
8+ * A boolean representing if to show or not the top footer container
9+ */
10+ showTopFooter : boolean ;
11+
712 recentSubmissions : {
813 /**
914 * The number of item showing in recent submission components
You can’t perform that action at this time.
0 commit comments