From 21ab7d3bd95a30596dad6acb328b5663175ac245 Mon Sep 17 00:00:00 2001 From: Emil Domagala Date: Tue, 8 Sep 2026 13:51:31 +0200 Subject: [PATCH] fix: using new eperson and group on init page instead of cashed --- .../shared/resource-policies/resource-policies.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/shared/resource-policies/resource-policies.component.ts b/src/app/shared/resource-policies/resource-policies.component.ts index 0dbc6a537cb..12f97c4ba04 100644 --- a/src/app/shared/resource-policies/resource-policies.component.ts +++ b/src/app/shared/resource-policies/resource-policies.component.ts @@ -199,7 +199,8 @@ export class ResourcePoliciesComponent implements OnInit, OnDestroy { initResourcePolicyList() { this.subs.push(this.resourcePolicyService.searchByResource( this.resourceUUID, null, false, true, - followLink('eperson'), followLink('group'), + followLink('eperson', { useCachedVersionIfAvailable: false, reRequestOnStale: true }), + followLink('group', { useCachedVersionIfAvailable: false, reRequestOnStale: true }), ).pipe( filter(() => this.isActive), getAllSucceededRemoteData(),