소스 검색

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)


불러오는 중...
취소
저장