Skip to content

Commit

Permalink
fix(data): SAVE_ENTITIES_CANCELED type in SaveEntitiesCanceled (#3079)
Browse files Browse the repository at this point in the history
Closes #3065
  • Loading branch information
AkiraTsuboi committed Jul 21, 2021
1 parent b5579a8 commit b24c1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/data/src/actions/entity-cache-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit b24c1e0

Please sign in to comment.