From 44cffe10dd4a15bb24b628d34e804f56bcbc6b2b Mon Sep 17 00:00:00 2001 From: Akira Tsuboi Date: Wed, 21 Jul 2021 08:33:15 +0900 Subject: [PATCH] fix(data): modify-type-in-entity-cache-action --- modules/data/src/actions/entity-cache-action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/data/src/actions/entity-cache-action.ts b/modules/data/src/actions/entity-cache-action.ts index 16164a66e0..23db453a9f 100644 --- a/modules/data/src/actions/entity-cache-action.ts +++ b/modules/data/src/actions/entity-cache-action.ts @@ -166,7 +166,7 @@ export class SaveEntitiesCanceled implements Action { readonly reason?: string; readonly tag?: string; }; - readonly type = EntityCacheAction.SAVE_ENTITIES_CANCEL; + readonly type = EntityCacheAction.SAVE_ENTITIES_CANCELED; constructor(correlationId: any, reason?: string, tag?: string) { this.payload = { correlationId, reason, tag };