mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
Merge branch 'fix-rss-button-not-showing' into atmire-contributions-march-2023
This commit is contained in:
@@ -32,7 +32,7 @@ import { RemoteData } from '../../core/data/remote-data';
|
|||||||
})
|
})
|
||||||
export class RSSComponent implements OnInit, OnDestroy {
|
export class RSSComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
route$: BehaviorSubject<string>;
|
route$: BehaviorSubject<string> = new BehaviorSubject<string>('');
|
||||||
|
|
||||||
isEnabled$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(null);
|
isEnabled$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(null);
|
||||||
|
|
||||||
@@ -99,7 +99,7 @@ export class RSSComponent implements OnInit, OnDestroy {
|
|||||||
rel: 'search',
|
rel: 'search',
|
||||||
title: 'Dspace'
|
title: 'Dspace'
|
||||||
});
|
});
|
||||||
this.route$ = new BehaviorSubject<string>(route);
|
this.route$.next(route);
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user