Commit f6fc632c authored by Mark Florian's avatar Mark Florian Committed by David O'Regan

Fix component option order in test_case_show

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

Part of https://gitlab.com/gitlab-org/gitlab/-/issues/297216.
parent b99dc68a
...@@ -34,6 +34,7 @@ export default { ...@@ -34,6 +34,7 @@ export default {
IssuableShow, IssuableShow,
TestCaseSidebar, TestCaseSidebar,
}, },
mixins: [TestCaseGraphQL],
inject: [ inject: [
'projectFullPath', 'projectFullPath',
'testCaseNewPath', 'testCaseNewPath',
...@@ -42,7 +43,6 @@ export default { ...@@ -42,7 +43,6 @@ export default {
'descriptionPreviewPath', 'descriptionPreviewPath',
'descriptionHelpPath', 'descriptionHelpPath',
], ],
mixins: [TestCaseGraphQL],
data() { data() {
return { return {
testCase: {}, testCase: {},
......
...@@ -19,6 +19,7 @@ export default { ...@@ -19,6 +19,7 @@ export default {
directives: { directives: {
GlTooltip, GlTooltip,
}, },
mixins: [TestCaseGraphQL],
inject: [ inject: [
'projectFullPath', 'projectFullPath',
'testCaseId', 'testCaseId',
...@@ -28,7 +29,6 @@ export default { ...@@ -28,7 +29,6 @@ export default {
'labelsManagePath', 'labelsManagePath',
'projectsFetchPath', 'projectsFetchPath',
], ],
mixins: [TestCaseGraphQL],
props: { props: {
sidebarExpanded: { sidebarExpanded: {
type: Boolean, type: Boolean,
......
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