|
|
@@ -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> |