ソースを参照

automatic insert modify

zhangyuanlian 6 年 前
コミット
4147ddd755
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/components/FlowChart.vue

+ 1 - 1
src/components/FlowChart.vue

@@ -144,7 +144,7 @@ export default {
     nodesNoOutput: function () {
       var activties = this.filterAcivities()
       return activties.filter(node => {
-        return this.edges.some(edge => {
+        return this.edges.every(edge => {
           return edge.source !== node
         })
       })