Skip to content

Commit b24c1e0

Browse files
authored
fix(data): SAVE_ENTITIES_CANCELED type in SaveEntitiesCanceled (#3079)
Closes #3065
1 parent b5579a8 commit b24c1e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/data/src/actions/entity-cache-action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export class SaveEntitiesCanceled implements Action {
166166
readonly reason?: string;
167167
readonly tag?: string;
168168
};
169-
readonly type = EntityCacheAction.SAVE_ENTITIES_CANCEL;
169+
readonly type = EntityCacheAction.SAVE_ENTITIES_CANCELED;
170170

171171
constructor(correlationId: any, reason?: string, tag?: string) {
172172
this.payload = { correlationId, reason, tag };

0 commit comments

Comments
 (0)