summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-06-14 10:18:24 +0100
committerFilipa Lacerda <filipa@gitlab.com>2017-06-14 10:18:24 +0100
commita7e06a57a55282192a1158bf41b28d6fc515d392 (patch)
treeec487548e9d4286f35794772eb0d05c639a160d2 /app/assets/javascripts/pipelines
parentffee59fdfead41b297e6d80ea4b8a224b932bf3d (diff)
downloadgitlab-ce-vue-pipelines-code.tar.gz
Fix identation and move eslint rule closer to the item that needs it disabledvue-pipelines-code
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r--app/assets/javascripts/pipelines/components/pipelines_actions.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/pipelines/components/pipelines_actions.vue b/app/assets/javascripts/pipelines/components/pipelines_actions.vue
index 1377b9beb21..da5df2a06cf 100644
--- a/app/assets/javascripts/pipelines/components/pipelines_actions.vue
+++ b/app/assets/javascripts/pipelines/components/pipelines_actions.vue
@@ -1,5 +1,4 @@
<script>
- /* eslint-disable no-new */
/* global Flash */
import '~/flash';
import playIconSvg from 'icons/_icon_play.svg';
@@ -39,6 +38,7 @@
})
.catch(() => {
this.isLoading = false;
+ // eslint-disable-next-line no-new
new Flash('An error occured while making the request.');
});
},