mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 12:33:07 +00:00
Cache redesign part 2
This commit is contained in:
@@ -79,11 +79,10 @@ export class WorkflowItemDataService extends DataService<WorkflowItem> {
|
||||
|
||||
hrefObs.pipe(
|
||||
find((href: string) => hasValue(href)),
|
||||
map((href: string) => {
|
||||
const request = new DeleteByIDRequest(requestId, href, id);
|
||||
this.requestService.configure(request);
|
||||
})
|
||||
).subscribe();
|
||||
).subscribe((href: string) => {
|
||||
const request = new DeleteByIDRequest(requestId, href, id);
|
||||
this.requestService.send(request);
|
||||
});
|
||||
|
||||
return this.rdbService.buildFromRequestUUID(requestId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user