소스 검색

fix: add ssh key while launching a bubble

pull/76/head
Tyler Chen 4 년 전
부모
커밋
55dd3f1267
1개의 변경된 파일9개의 추가작업 그리고 6개의 파일을 삭제
  1. +9
    -6
      src/_components/modals/LaunchBubbleSettingsModal.vue

+ 9
- 6
src/_components/modals/LaunchBubbleSettingsModal.vue 파일 보기

@@ -35,10 +35,9 @@
</template>
</v-select>
<p
class="text-center description"
v-html="messages.field_description_network_type"
class="text-center description"
v-html="messages.field_description_network_type"
/>

</div>
</div>
<!-- fork host and admin name -->
@@ -266,6 +265,8 @@
<v-select
:clearable="false"
:placeholder="messages.field_label_network_ssh_key"
v-model="accountPlan.sshKey"
:reduce="(options) => options.uuid"
:options="sshKeys"
>
<template v-slot:selected-option="option">
@@ -513,7 +514,9 @@ export default {

isComplete() {
return (
(this.accountPlan.name !== '' || (this.accountPlan.forkHost !== '' && this.accountPlan.adminEmail !== '')) &&
(this.accountPlan.name !== '' ||
(this.accountPlan.forkHost !== '' &&
this.accountPlan.adminEmail !== '')) &&
this.accountPlan.domain !== '' &&
this.accountPlan.locale !== '' &&
this.accountPlan.timezone !== '' &&
@@ -824,7 +827,7 @@ export default {
}
}
}
}
}
},
},
};
</script>

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