Skip to content

Commit

Permalink
Fixed sending events
Browse files Browse the repository at this point in the history
  • Loading branch information
christianalfoni committed Nov 3, 2017
1 parent 8e5652f commit 853bbcf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Debugger/Model/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Inspector from '../Inspector'
import connector from 'connector'

export default connect({
port: state`port`,
port: state`config.port`,
currentPage: state`debugger.currentPage`,
useragent: state`useragent`,
model: state`debugger.model`,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Debugger/Mutations/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Mutation from '../Signals/Signal/Action/Mutation'
import connector from 'connector'

export default connect({
port: state`port`,
port: state`config.port`,
mutations: state`debugger.mutations`,
currentRememberedMutationIndex: state`debugger.currentRememberedMutationIndex`,
searchValue: state`debugger.searchValue`,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Debugger/Signals/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import List from './List'
import Signal from './Signal'

export default connect({
port: state`port`,
port: state`config.port`,
currentPage: state`debugger.currentPage`,
signalsList: signalsList,
useragent: state`useragent`,
Expand Down

0 comments on commit 853bbcf

Please sign in to comment.