浏览代码

Version update

* also Fixed an issue in notifications frontend
luis 7 年之前
父节点
当前提交
064fa93686
共有 3 个文件被更改,包括 2 次插入3 次删除
  1. 0 1
      browser/vue-flow/src/store/flow/actions.js
  2. 1 1
      browser/vue-flow/src/store/ws.js
  3. 1 1
      go/src/flow/flowserver/version.go

+ 0 - 1
browser/vue-flow/src/store/flow/actions.js

@@ -57,7 +57,6 @@ export default {
     ctx.dispatch(m.DOCUMENT_SYNC)
   },
   [m.NOTIFICATION_ADD] (ctx, notification) {
-    utils.activity()
     ctx.commit(m.NOTIFICATION_ADD, notification)
     clearTimeout(this.notificationTimeout)
     this.notificationTimeout = setTimeout(() => {

+ 1 - 1
browser/vue-flow/src/store/ws.js

@@ -87,7 +87,7 @@ export default store => {
   })
   flowService.on('sessionNotify', (v) => {
     utils.activity()
-    store.commit(flow.NOTIFICATION_ADD, v.data)
+    store.dispatch(flow.NOTIFICATION_ADD, v.data)
   })
   flowService.on('sessionJoin', (v) => {
     utils.activity()

+ 1 - 1
go/src/flow/flowserver/version.go

@@ -2,5 +2,5 @@ package flowserver
 
 const (
   //Version contains version of the package
-  Version = "0.1 - built: 2018-01-23 22:20:02 UTC"
+  Version = "0.0.1 - built: 2018-02-13 01:36:28 UTC"
 )