Commit 4869ae7a authored by Kushal Pandya's avatar Kushal Pandya

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

Fix component option order in environments

See merge request gitlab-org/gitlab!51362
parents 8c7ac040 b289e6eb
...@@ -15,17 +15,17 @@ export default { ...@@ -15,17 +15,17 @@ export default {
GlTooltip, GlTooltip,
}, },
mixins: [TimeagoMixin], mixins: [TimeagoMixin],
inject: {
projectPath: {
default: '',
},
},
props: { props: {
environment: { environment: {
required: true, required: true,
type: Object, type: Object,
}, },
}, },
inject: {
projectPath: {
default: '',
},
},
data() { data() {
return { alert: null }; return { alert: null };
}, },
......
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