Skip to content

Commit 3cedb08

Browse files
authored
Merge pull request #425 from kubero-dev/feature/fix-edit-pipeline-headline
Fix / Pipeline title says "create" even when editing an existing pipeline
2 parents 51c803d + b42847e commit 3cedb08

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

client/src/components/pipelines/form.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
<v-container>
44
<v-row>
55
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
6-
<h2>
6+
7+
<h2 v-if="pipelineName=='new'">
78
Create a new Pipeline
89
</h2>
10+
<h2 v-if="pipelineName!='new'">
11+
Edit <span style="color: rgb(var(--v-theme-kubero))">{{ pipelineName }}</span>
12+
</h2>
913
<p class="text-justify">
1014
A Pipeline may have several stages with apps
1115
</p>

0 commit comments

Comments
 (0)