Skip to content

Commit

Permalink
fix pipeline result color
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Vernin <[email protected]>
  • Loading branch information
olblak committed Jun 30, 2023
1 parent 08971be commit 8ebfc45
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/pipeline/report.vue
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@
<v-card-text>
<v-row
>
<v-col>State</v-col><v-col><v-icon icon="mdi-circle" :color="getStatusColor(pipeline.Result)"></v-icon></v-col>
<v-col>State</v-col><v-col><v-icon icon="mdi-circle" :color="getStatusColor(pipeline.Pipeline.Result)"></v-icon></v-col>
</v-row>
<v-row>
<v-col>Created At</v-col><v-col>{{ pipeline.Created_at }}</v-col>
Expand Down Expand Up @@ -247,9 +247,6 @@ export default {
methods: {
isLatestReport(){
if (this.latestReportByID == null) {
return ""
}
if (this.latestReportByID !== null) {
return this.latestReportByID.ID == this.pipeline.ID
}
Expand Down

0 comments on commit 8ebfc45

Please sign in to comment.