mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 13:33:03 +00:00
96384: Fix RSS component sometimes not displaying when loaded to fast
This commit is contained in:
@@ -33,7 +33,7 @@ import { RemoteData } from '../../core/data/remote-data';
|
||||
})
|
||||
export class RSSComponent implements OnInit, OnDestroy {
|
||||
|
||||
route$: BehaviorSubject<string>;
|
||||
route$: BehaviorSubject<string> = new BehaviorSubject<string>('');
|
||||
|
||||
isEnabled$: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(null);
|
||||
|
||||
@@ -101,7 +101,7 @@ export class RSSComponent implements OnInit, OnDestroy {
|
||||
rel: 'search',
|
||||
title: 'Dspace'
|
||||
});
|
||||
this.route$ = new BehaviorSubject<string>(route);
|
||||
this.route$.next(route);
|
||||
}));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user