summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2017-10-18 12:34:43 +0200
committerTim Zallmann <tzallmann@gitlab.com>2017-10-30 10:30:15 +0100
commit5c8a614c114226f53616255ac7322d17056be847 (patch)
tree1d3dc127af4dcf0287c8cc62bf3b7bd34da1191c
parent667cd6257e21c4f468bf20575c70c6e159ff42c8 (diff)
downloadgitlab-ce-5c8a614c114226f53616255ac7322d17056be847.tar.gz
Added Missing Semicolon
-rw-r--r--app/assets/javascripts/pipelines/components/graph/action_component.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/action_component.vue b/app/assets/javascripts/pipelines/components/graph/action_component.vue
index 0ca86d09dbd..547140b1a43 100644
--- a/app/assets/javascripts/pipelines/components/graph/action_component.vue
+++ b/app/assets/javascripts/pipelines/components/graph/action_component.vue
@@ -39,7 +39,7 @@
computed: {
cssClass() {
- const actionIconDash = gl.text.dasherize(this.actionIcon)
+ const actionIconDash = gl.text.dasherize(this.actionIcon);
return `${actionIconDash} js-icon-${actionIconDash}`;
},
},