Skip to content
Snippets Groups Projects
Commit 52e104b2 authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Changes after review

parent 93621543
No related branches found
No related tags found
No related merge requests found
/* eslint-disable no-param-reassign */
/* global Vue */
import Vue from 'vue';
import iconCommit from '../svg/icon_commit.svg';
 
((global) => {
Loading
Loading
@@ -10,6 +10,11 @@ import iconCommit from '../svg/icon_commit.svg';
items: Array,
stage: Object,
},
data() {
return { iconCommit };
},
template: `
<div>
<div class="events-description">
Loading
Loading
/* eslint-disable no-param-reassign */
/* global Vue */
import Vue from 'vue';
import iconBranch from '../svg/icon_branch.svg';
 
((global) => {
Loading
Loading
@@ -10,6 +10,9 @@ import iconBranch from '../svg/icon_branch.svg';
items: Array,
stage: Object,
},
data() {
return { iconBranch };
},
template: `
<div>
<div class="events-description">
Loading
Loading
/* eslint-disable no-param-reassign */
/* global Vue */
import Vue from 'vue';
import iconBuildStatus from '../svg/icon_build_status.svg';
import iconBranch from '../svg/icon_branch.svg';
 
Loading
Loading
@@ -11,6 +11,9 @@ import iconBranch from '../svg/icon_branch.svg';
items: Array,
stage: Object,
},
data() {
return { iconBuildStatus, iconBranch };
},
template: `
<div>
<div class="events-description">
Loading
Loading
Loading
Loading
@@ -46,13 +46,17 @@ import warningSvg from 'icons/_icon_status_warning.svg';
const { status } = this.pipeline.details;
return status.has_details ? status.details_path : false;
},
content() {
return `${this.svg} ${this.pipeline.details.status.text}`;
},
},
template: `
<td class="commit-link">
<a
:class='cssClasses'
:href='detailsPath'
v-html="svg + pipeline.details.status.text">
:class="cssClasses"
:href="detailsPath"
v-html="content">
</a>
</td>
`,
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment