diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2017-10-18 12:34:43 +0200 |
---|---|---|
committer | Tim Zallmann <tzallmann@gitlab.com> | 2017-10-30 10:30:15 +0100 |
commit | 5c8a614c114226f53616255ac7322d17056be847 (patch) | |
tree | 1d3dc127af4dcf0287c8cc62bf3b7bd34da1191c /app | |
parent | 667cd6257e21c4f468bf20575c70c6e159ff42c8 (diff) | |
download | gitlab-ce-5c8a614c114226f53616255ac7322d17056be847.tar.gz |
Added Missing Semicolon
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/pipelines/components/graph/action_component.vue | 2 |
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}`; }, }, |