Skip to content

Commit

Permalink
Merge pull request #425 from kubero-dev/feature/fix-edit-pipeline-hea…
Browse files Browse the repository at this point in the history
…dline

Fix / Pipeline title says "create" even when editing an existing pipeline
  • Loading branch information
mms-gianni authored Oct 5, 2024
2 parents 51c803d + b42847e commit 3cedb08
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/pipelines/form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
<v-container>
<v-row>
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
<h2>

<h2 v-if="pipelineName=='new'">
Create a new Pipeline
</h2>
<h2 v-if="pipelineName!='new'">
Edit <span style="color: rgb(var(--v-theme-kubero))">{{ pipelineName }}</span>
</h2>
<p class="text-justify">
A Pipeline may have several stages with apps
</p>
Expand Down

0 comments on commit 3cedb08

Please sign in to comment.