Commit 2701514a authored by Mark Florian's avatar Mark Florian

Fix component option order in analytics

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

Part of https://gitlab.com/gitlab-org/gitlab/-/issues/297216.
parent a1239653
...@@ -14,12 +14,12 @@ export default () => { ...@@ -14,12 +14,12 @@ export default () => {
return new Vue({ return new Vue({
el: container, el: container,
provide: {
formattedData,
},
components: { components: {
ActivityChart, ActivityChart,
}, },
provide: {
formattedData,
},
render(createElement) { render(createElement) {
return createElement('activity-chart'); return createElement('activity-chart');
}, },
......
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