瀏覽代碼

fix incorrect param order in fork call

pull/16/head
Jonathan Cobb 4 年之前
父節點
當前提交
9011079a9f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/_store/networks.module.js

+ 1
- 1
src/_store/networks.module.js 查看文件

@@ -57,7 +57,7 @@ const actions = {
.then(
plan => {
if (accountPlan.forkHost && accountPlan.forkHost !== '') {
networkService.forkNetwork(userId, plan.name, accountPlan.forkHost, cloud, exactRegion, region, messages, errors)
networkService.forkNetwork(userId, plan.name, accountPlan.forkHost, cloud, region, exactRegion, messages, errors)
.then(
newNodeNotification => commit('addPlanAndStartNetworkSuccess', newNodeNotification),
error => commit('addPlanSuccessStartNetworkFailure', error)


Loading…
取消
儲存