Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2017-10-30 14:31:20 +0300
committerTim Zallmann <tzallmann@gitlab.com>2017-10-30 14:31:20 +0300
commit1c015eda90dabb45e5f9f0344ec6dfb9be6eba81 (patch)
tree3e286c955c3d1d2d8a427b16abaa963baee2f551 /app/assets/javascripts/pipelines
parent5c8a614c114226f53616255ac7322d17056be847 (diff)
Fixed different sizes
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r--app/assets/javascripts/pipelines/components/stage.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines/components/stage.vue b/app/assets/javascripts/pipelines/components/stage.vue
index 24a15339622..c8bccb4f20d 100644
--- a/app/assets/javascripts/pipelines/components/stage.vue
+++ b/app/assets/javascripts/pipelines/components/stage.vue
@@ -122,6 +122,10 @@ export default {
triggerButtonClass() {
return `ci-status-icon-${this.stage.status.group}`;
},
+
+ borderlessIcon() {
+ return `${this.stage.status.icon}_borderless`;
+ }
},
};
</script>
@@ -145,7 +149,7 @@ export default {
aria-hidden="true"
:aria-label="stage.title">
<icon
- :name="stage.status.icon"/>
+ :name="borderlessIcon"/>
</span>
<i