1
0

61142: EditRelationshipComponent tests + de-caching of requests in ItemRelationships

This commit is contained in:
Kristof De Langhe
2019-04-05 13:46:48 +02:00
parent 0cf4cdc1c5
commit b78b2e5b82
3 changed files with 186 additions and 3 deletions

View File

@@ -68,8 +68,8 @@ export class ObjectCacheService {
* @param href
* The unique href of the object to be removed
*/
remove(uuid: string): void {
this.store.dispatch(new RemoveFromObjectCacheAction(uuid));
remove(href: string): void {
this.store.dispatch(new RemoveFromObjectCacheAction(href));
}
/**