Commit b289e6eb authored by Mark Florian's avatar Mark Florian

Fix component option order in environments

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

Part of https://gitlab.com/gitlab-org/gitlab/-/issues/297216.
parent a1239653
...@@ -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