UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Introduce Valkyrie MissionApplication creation to Launchboard projects page.

Merged Michael Winberry requested to merge Valkyrie into master
All threads resolved!
4 files
+ 45
36
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -22,7 +22,29 @@
lg="6"
class="d-flex flex-column pb-0 pb-lg-3 px-xl-16 px-lg-16"
>
<MissionAppCiVariables :ciVariables="missionApp.ciVariables" />
<v-expansion-panels>
<v-expansion-panel>
<v-expansion-panel-header
><h4 class="text-left ml-0 pl-lg-0">
Advanced Settings
</h4></v-expansion-panel-header
>
<v-expansion-panel-content>
<MissionAppCiVariables
:ciVariables="missionApp.ciVariables"
/>
<div class="sectionSpacer" />
<v-checkbox
v-model="missionApp.dns"
label="Bootstrap with product dns."
/>
<v-checkbox
v-model="missionApp.bootstrapWithManifestRepo"
label="Bootstrap with manifest repo."
/>
</v-expansion-panel-content>
</v-expansion-panel>
</v-expansion-panels>
</v-col>
</v-row>
<h2 class="my-16">Projects</h2>
@@ -72,9 +94,9 @@ export default {
data: () => ({
missionApp: {
ciVariables: [],
dns: false,
dns: true,
projects: [],
bootstrapWithManifestRepo: false,
bootstrapWithManifestRepo: true,
},
valid: false,
isAddingBusy: false,
Loading