Skip to content

Commit 31e8c1d

Browse files
author
Guillaume Chau
committedApr 9, 2018
fix(ui): ipc.send
1 parent 3c59d6f commit 31e8c1d

File tree

1 file changed

+1
-1
lines changed
  • packages/@vue/cli-ui/src/graphql-api/utils

1 file changed

+1
-1
lines changed
 

‎packages/@vue/cli-ui/src/graphql-api/utils/ipc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function off (cb) {
3232
}
3333

3434
function send (data) {
35-
ipc.server.emit('message', data)
35+
ipc.server.broadcast('message', data)
3636
}
3737

3838
module.exports = {

0 commit comments

Comments
 (0)
Please sign in to comment.