Commit c2b2b72e authored by Brandon Labuschagne's avatar Brandon Labuschagne

Merge branch 'fix-vue-order-in-components-pipelines' into 'master'

Fix component option order in pipelines

See merge request gitlab-org/gitlab!51371
parents d6ebe7a9 aefbf015
...@@ -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