We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b37e3 commit 496e88bCopy full SHA for 496e88b
src/emitter.js
@@ -97,9 +97,9 @@ export default class EventEmitter{
97
98
if(action === this.actionPrefix+event) {
99
100
- Logger.info(`Dispatching Action: ${action}, Data:`, args);
+ Logger.info(`Dispatching Action: ${key}, Data:`, args);
101
102
- this.store.dispatch(action, args);
+ this.store.dispatch(key, args);
103
104
}
105
@@ -113,9 +113,9 @@ export default class EventEmitter{
113
114
if(mutation === this.mutationPrefix+event) {
115
116
- Logger.info(`Commiting Mutation: ${mutation}, Data:`, args);
+ Logger.info(`Commiting Mutation: ${key}, Data:`, args);
117
118
- this.store.commit(mutation, args);
+ this.store.commit(key, args);
119
120
121
0 commit comments