Commit aefbf015 authored by Mark Florian's avatar Mark Florian

Fix component option order in pipelines

This fixes `vue/order-in-components` violations in the
`{,ee/}app/assets/javascripts/pipelines` directories.

Part of https://gitlab.com/gitlab-org/gitlab/-/issues/297216.
parent a1239653
...@@ -11,6 +11,11 @@ export default { ...@@ -11,6 +11,11 @@ export default {
directives: { directives: {
GlTooltip: GlTooltipDirective, GlTooltip: GlTooltipDirective,
}, },
inject: {
targetProjectFullPath: {
default: '',
},
},
props: { props: {
pipeline: { pipeline: {
type: Object, type: Object,
...@@ -25,11 +30,6 @@ export default { ...@@ -25,11 +30,6 @@ export default {
required: true, required: true,
}, },
}, },
inject: {
targetProjectFullPath: {
default: '',
},
},
computed: { computed: {
user() { user() {
return this.pipeline.user; return this.pipeline.user;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment