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
path: root/app
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-05-06 23:35:07 +0300
committerFilipa Lacerda <filipa@gitlab.com>2017-05-06 23:35:07 +0300
commit13b31d25ec9c5f8d17f95ca8ad756a88b5e3dbd9 (patch)
tree8391bb1dabc8505bc11e60edc305d7ffa7792f89 /app
parentaa440eb1c0947d2dc551c61abbd9d271b9002050 (diff)
Fix broken css class
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/pipelines/components/stage.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/pipelines/components/stage.vue b/app/assets/javascripts/pipelines/components/stage.vue
index dc42223269d..310f44b06df 100644
--- a/app/assets/javascripts/pipelines/components/stage.vue
+++ b/app/assets/javascripts/pipelines/components/stage.vue
@@ -14,7 +14,7 @@
*/
/* global Flash */
-import { statusCssClasses, borderlessStatusIconEntityMap } from '../../vue_shared/ci_status_icons';
+import { borderlessStatusIconEntityMap } from '../../vue_shared/ci_status_icons';
export default {
props: {
@@ -109,7 +109,7 @@ export default {
},
triggerButtonClass() {
- return `ci-status-icon-${statusCssClasses[this.stage.status.icon]}`;
+ return `ci-status-icon-${this.stage.status.group}`;
},
svgIcon() {