UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

BULL-3225-better-startup - Better startup

Merged Patrick Tafoya requested to merge BULL-3225-better-startup into main
1 file
+ 19
0
Compare changes
  • Side-by-side
  • Inline
+ 19
0
@@ -46,6 +46,19 @@
</v-card-text>
</v-card>
<br/>
<div
v-if="templatesConfiguration.overridableBranch.override || templatesConfiguration.overridableFormulaFilePath.override"
class="template-override-notice"
>
<span>Using templates from: </span>
<v-kbd v-if="templatesConfiguration.overridableBranch.override">
{{templatesConfiguration.overridableBranch.override}}
</v-kbd>
<v-kbd v-if="templatesConfiguration.overridableFormulaFilePath.override">
{{templatesConfiguration.overridableFormulaFilePath.override}}
</v-kbd>
</div>
<br/>
<v-form @submit.prevent="generateProject" :model-value="isFormValid">
<v-row>
@@ -349,3 +362,9 @@ const packProject: BuildTask = async (step: BuildStep, zip: JSZip) => {
</script>
<style lang="scss" scoped>
.template-override-notice span,.v-kbd{
color: darkgray !important;
}
</style>
Loading