mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
[CST-5729] Remove additional error message
This commit is contained in:
@@ -29,7 +29,6 @@ export class SignpostingDataService {
|
|||||||
|
|
||||||
return this.restService.get(`${baseUrl}/signposting/links/${uuid}`).pipe(
|
return this.restService.get(`${baseUrl}/signposting/links/${uuid}`).pipe(
|
||||||
catchError((err) => {
|
catchError((err) => {
|
||||||
console.error(err);
|
|
||||||
return observableOf([]);
|
return observableOf([]);
|
||||||
}),
|
}),
|
||||||
map((res: RawRestResponse) => res.statusCode === 200 ? res.payload as SignpostingLink[] : [])
|
map((res: RawRestResponse) => res.statusCode === 200 ? res.payload as SignpostingLink[] : [])
|
||||||
|
Reference in New Issue
Block a user